Current Path : /proc/5198/root/home2/church/ |
Current File : //proc/5198/root/home2/church/church_michaelblakemenswear.1646953416.sql |
-- MySQL dump 10.13 Distrib 5.6.41-84.1, for Linux (x86_64) -- -- Host: localhost Database: church_michaelblakemenswear -- ------------------------------------------------------ -- Server version 5.6.41-84.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_actionscheduler_actions` -- DROP TABLE IF EXISTS `wp_actionscheduler_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `schedule` longtext COLLATE utf8mb4_unicode_520_ci, `group_id` bigint(20) unsigned NOT NULL DEFAULT '0', `attempts` int(11) NOT NULL DEFAULT '0', `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', `claim_id` bigint(20) unsigned NOT NULL DEFAULT '0', `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `hook` (`hook`), KEY `status` (`status`), KEY `scheduled_date_gmt` (`scheduled_date_gmt`), KEY `args` (`args`), KEY `group_id` (`group_id`), KEY `last_attempt_gmt` (`last_attempt_gmt`), KEY `claim_id` (`claim_id`), KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=154 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_actions` -- LOCK TABLES `wp_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_claims` -- DROP TABLE IF EXISTS `wp_actionscheduler_claims`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_claims` ( `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`claim_id`), KEY `date_created_gmt` (`date_created_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=2438 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_claims` -- LOCK TABLES `wp_actionscheduler_claims` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_groups` -- DROP TABLE IF EXISTS `wp_actionscheduler_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_groups` ( `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`group_id`), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_groups` -- LOCK TABLES `wp_actionscheduler_groups` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */; INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data'),(3,'wc_update_product_default_cat'),(4,'woocommerce-db-updates'); /*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_logs` -- DROP TABLE IF EXISTS `wp_actionscheduler_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_logs` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `action_id` bigint(20) unsigned NOT NULL, `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=442 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_logs` -- LOCK TABLES `wp_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)), KEY `woo_idx_comment_type` (`comment_type`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-08-15 20:32:01','2021-08-15 20:32:01','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gla_budget_recommendations` -- DROP TABLE IF EXISTS `wp_gla_budget_recommendations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gla_budget_recommendations` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `currency` varchar(3) COLLATE utf8mb4_unicode_520_ci NOT NULL, `country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL, `daily_budget_low` int(11) NOT NULL, `daily_budget_high` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `country_currency` (`country`,`currency`) ) ENGINE=InnoDB AUTO_INCREMENT=4231 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gla_budget_recommendations` -- LOCK TABLES `wp_gla_budget_recommendations` WRITE; /*!40000 ALTER TABLE `wp_gla_budget_recommendations` DISABLE KEYS */; INSERT INTO `wp_gla_budget_recommendations` VALUES (1,'AED','US',45,120),(2,'AED','CH',40,105),(3,'AED','AU',35,95),(4,'AED','GB',30,80),(5,'AED','DE',30,80),(6,'AED','DK',30,75),(7,'AED','AT',20,65),(8,'AED','NO',25,70),(9,'AED','CA',25,80),(10,'AED','NL',30,75),(11,'AED','SE',25,60),(12,'AED','IE',25,60),(13,'AED','BE',20,60),(14,'AED','FI',15,45),(15,'AED','FR',20,50),(16,'AED','NZ',20,60),(17,'AED','HK',20,50),(18,'AED','CZ',15,40),(19,'AED','SK',15,35),(20,'AED','AE',15,50),(21,'AED','SG',20,60),(22,'AED','IL',15,40),(23,'AED','KW',10,40),(24,'AED','IT',10,30),(25,'AED','JP',15,40),(26,'AED','ES',10,30),(27,'AED','VE',5,25),(28,'AED','HU',10,25),(29,'AED','PT',10,25),(30,'AED','GR',15,25),(31,'AED','KR',15,40),(32,'AED','TW',15,35),(33,'AED','PL',10,25),(34,'AED','ZM',5,10),(35,'AED','PR',5,35),(36,'AED','CI',5,10),(37,'AED','RO',10,25),(38,'AED','BH',5,25),(39,'AED','PA',5,35),(40,'AED','GH',5,10),(41,'AED','KH',5,10),(42,'AED','SN',5,10),(43,'AED','SA',5,25),(44,'AED','RU',5,20),(45,'AED','UG',5,10),(46,'AED','BR',5,15),(47,'AED','NI',5,10),(48,'AED','MG',5,10),(49,'AED','DO',5,15),(50,'AED','MX',5,20),(51,'AED','OM',5,20),(52,'AED','CM',5,15),(53,'AED','ZA',5,20),(54,'AED','CL',5,20),(55,'AED','KE',5,10),(56,'AED','NP',5,10),(57,'AED','PE',5,15),(58,'AED','UA',5,10),(59,'AED','MZ',5,15),(60,'AED','TZ',5,10),(61,'AED','AO',5,10),(62,'AED','JO',5,10),(63,'AED','ZW',5,10),(64,'AED','TR',5,10),(65,'AED','MU',5,10),(66,'AED','SV',5,10),(67,'AED','TH',5,20),(68,'AED','CO',5,10),(69,'AED','LK',5,10),(70,'AED','CR',5,10),(71,'AED','AR',5,10),(72,'AED','MA',5,10),(73,'AED','MY',5,20),(74,'AED','KZ',5,10),(75,'AED','DZ',5,10),(76,'AED','ID',5,15),(77,'AED','NG',5,15),(78,'AED','GT',5,15),(79,'AED','VN',5,15),(80,'AED','BY',5,10),(81,'AED','EG',5,15),(82,'AED','UY',5,10),(83,'AED','BD',5,10),(84,'AED','PK',5,10),(85,'AED','PH',5,10),(86,'AED','ET',5,10),(87,'AED','TN',5,10),(88,'AED','LB',5,10),(89,'AED','IN',5,10),(90,'AED','PY',5,10),(91,'AED','UZ',5,10),(92,'AED','EC',5,10),(93,'AED','MM',5,10),(94,'AED','GE',5,10),(95,'ARS','US',1010,2845),(96,'ARS','CH',940,2475),(97,'ARS','AU',855,2200),(98,'ARS','GB',745,1910),(99,'ARS','DE',740,1895),(100,'ARS','DK',680,1690),(101,'ARS','AT',495,1545),(102,'ARS','NO',565,1575),(103,'ARS','CA',625,1910),(104,'ARS','NL',665,1690),(105,'ARS','SE',535,1445),(106,'ARS','IE',530,1390),(107,'ARS','BE',485,1425),(108,'ARS','FI',365,1105),(109,'ARS','FR',450,1205),(110,'ARS','NZ',460,1345),(111,'ARS','HK',415,1175),(112,'ARS','CZ',395,950),(113,'ARS','SK',375,810),(114,'ARS','AE',355,1110),(115,'ARS','SG',460,1360),(116,'ARS','IL',400,985),(117,'ARS','KW',180,885),(118,'ARS','IT',275,725),(119,'ARS','JP',345,975),(120,'ARS','ES',280,745),(121,'ARS','VE',35,570),(122,'ARS','HU',235,550),(123,'ARS','PT',235,615),(124,'ARS','GR',290,600),(125,'ARS','KR',360,955),(126,'ARS','TW',290,785),(127,'ARS','PL',250,620),(128,'ARS','ZM',35,205),(129,'ARS','PR',90,830),(130,'ARS','CI',50,200),(131,'ARS','RO',230,555),(132,'ARS','BH',105,580),(133,'ARS','PA',70,795),(134,'ARS','GH',85,235),(135,'ARS','KH',50,230),(136,'ARS','SN',35,250),(137,'ARS','SA',150,575),(138,'ARS','RU',150,475),(139,'ARS','UG',35,185),(140,'ARS','BR',160,390),(141,'ARS','NI',35,250),(142,'ARS','MG',35,180),(143,'ARS','DO',40,295),(144,'ARS','MX',120,435),(145,'ARS','OM',75,435),(146,'ARS','CM',35,325),(147,'ARS','ZA',145,460),(148,'ARS','CL',150,445),(149,'ARS','KE',45,185),(150,'ARS','NP',35,170),(151,'ARS','PE',90,375),(152,'ARS','UA',85,265),(153,'ARS','MZ',35,350),(154,'ARS','TZ',5,80),(155,'ARS','AO',75,200),(156,'ARS','JO',55,270),(157,'ARS','ZW',35,190),(158,'ARS','TR',90,250),(159,'ARS','MU',45,160),(160,'ARS','SV',35,195),(161,'ARS','TH',135,430),(162,'ARS','CO',70,270),(163,'ARS','LK',35,45),(164,'ARS','CR',40,280),(165,'ARS','AR',95,255),(166,'ARS','MA',40,165),(167,'ARS','MY',120,440),(168,'ARS','KZ',50,185),(169,'ARS','DZ',40,90),(170,'ARS','ID',105,395),(171,'ARS','NG',60,380),(172,'ARS','GT',40,295),(173,'ARS','VN',85,330),(174,'ARS','BY',40,160),(175,'ARS','EG',55,335),(176,'ARS','UY',45,200),(177,'ARS','BD',35,80),(178,'ARS','PK',40,225),(179,'ARS','PH',70,250),(180,'ARS','ET',10,85),(181,'ARS','TN',40,75),(182,'ARS','LB',40,125),(183,'ARS','IN',40,175),(184,'ARS','PY',40,135),(185,'ARS','UZ',40,80),(186,'ARS','EC',40,140),(187,'ARS','MM',40,45),(188,'ARS','GE',40,55),(189,'AUD','US',15,45),(190,'AUD','CH',15,35),(191,'AUD','AU',15,35),(192,'AUD','GB',10,30),(193,'AUD','DE',10,30),(194,'AUD','DK',10,25),(195,'AUD','AT',10,25),(196,'AUD','NO',10,25),(197,'AUD','CA',10,30),(198,'AUD','NL',10,25),(199,'AUD','SE',10,20),(200,'AUD','IE',10,20),(201,'AUD','BE',5,20),(202,'AUD','FI',5,15),(203,'AUD','FR',5,20),(204,'AUD','NZ',5,20),(205,'AUD','HK',5,20),(206,'AUD','CZ',5,15),(207,'AUD','SK',5,10),(208,'AUD','AE',5,15),(209,'AUD','SG',5,20),(210,'AUD','IL',5,15),(211,'AUD','KW',5,15),(212,'AUD','IT',5,10),(213,'AUD','JP',5,15),(214,'AUD','ES',5,10),(215,'AUD','VE',5,10),(216,'AUD','HU',5,10),(217,'AUD','PT',5,10),(218,'AUD','GR',5,10),(219,'AUD','KR',5,15),(220,'AUD','TW',5,10),(221,'AUD','PL',5,10),(222,'AUD','ZM',5,10),(223,'AUD','PR',5,15),(224,'AUD','CI',5,10),(225,'AUD','RO',5,10),(226,'AUD','BH',5,10),(227,'AUD','PA',5,10),(228,'AUD','GH',5,10),(229,'AUD','KH',5,10),(230,'AUD','SN',5,10),(231,'AUD','SA',5,10),(232,'AUD','RU',5,10),(233,'AUD','UG',5,10),(234,'AUD','BR',5,10),(235,'AUD','NI',5,10),(236,'AUD','MG',5,10),(237,'AUD','DO',5,10),(238,'AUD','MX',5,10),(239,'AUD','OM',5,10),(240,'AUD','CM',5,10),(241,'AUD','ZA',5,10),(242,'AUD','CL',5,10),(243,'AUD','KE',5,10),(244,'AUD','NP',5,10),(245,'AUD','PE',5,10),(246,'AUD','UA',5,10),(247,'AUD','MZ',5,10),(248,'AUD','TZ',5,10),(249,'AUD','AO',5,10),(250,'AUD','JO',5,10),(251,'AUD','ZW',5,10),(252,'AUD','TR',5,10),(253,'AUD','MU',5,10),(254,'AUD','SV',5,10),(255,'AUD','TH',5,10),(256,'AUD','CO',5,10),(257,'AUD','LK',5,10),(258,'AUD','CR',5,10),(259,'AUD','AR',5,10),(260,'AUD','MA',5,10),(261,'AUD','MY',5,10),(262,'AUD','KZ',5,10),(263,'AUD','DZ',5,10),(264,'AUD','ID',5,10),(265,'AUD','NG',5,10),(266,'AUD','GT',5,10),(267,'AUD','VN',5,10),(268,'AUD','BY',5,10),(269,'AUD','EG',5,10),(270,'AUD','UY',5,10),(271,'AUD','BD',5,10),(272,'AUD','PK',5,10),(273,'AUD','PH',5,10),(274,'AUD','ET',5,10),(275,'AUD','TN',5,10),(276,'AUD','LB',5,10),(277,'AUD','IN',5,10),(278,'AUD','PY',5,10),(279,'AUD','UZ',5,10),(280,'AUD','EC',5,10),(281,'AUD','MM',5,10),(282,'AUD','GE',5,10),(283,'BGN','US',20,55),(284,'BGN','CH',20,45),(285,'BGN','AU',15,40),(286,'BGN','GB',15,35),(287,'BGN','DE',15,35),(288,'BGN','DK',15,30),(289,'BGN','AT',10,30),(290,'BGN','NO',10,30),(291,'BGN','CA',10,35),(292,'BGN','NL',15,30),(293,'BGN','SE',10,25),(294,'BGN','IE',10,25),(295,'BGN','BE',10,25),(296,'BGN','FI',5,20),(297,'BGN','FR',10,25),(298,'BGN','NZ',10,25),(299,'BGN','HK',10,20),(300,'BGN','CZ',5,20),(301,'BGN','SK',5,15),(302,'BGN','AE',5,20),(303,'BGN','SG',10,25),(304,'BGN','IL',10,20),(305,'BGN','KW',5,15),(306,'BGN','IT',5,15),(307,'BGN','JP',5,20),(308,'BGN','ES',5,15),(309,'BGN','VE',5,10),(310,'BGN','HU',5,10),(311,'BGN','PT',5,10),(312,'BGN','GR',5,10),(313,'BGN','KR',5,20),(314,'BGN','TW',5,15),(315,'BGN','PL',5,10),(316,'BGN','ZM',5,10),(317,'BGN','PR',5,15),(318,'BGN','CI',5,10),(319,'BGN','RO',5,10),(320,'BGN','BH',5,10),(321,'BGN','PA',5,15),(322,'BGN','GH',5,10),(323,'BGN','KH',5,10),(324,'BGN','SN',5,10),(325,'BGN','SA',5,10),(326,'BGN','RU',5,10),(327,'BGN','UG',5,10),(328,'BGN','BR',5,10),(329,'BGN','NI',5,10),(330,'BGN','MG',5,10),(331,'BGN','DO',5,10),(332,'BGN','MX',5,10),(333,'BGN','OM',5,10),(334,'BGN','CM',5,10),(335,'BGN','ZA',5,10),(336,'BGN','CL',5,10),(337,'BGN','KE',5,10),(338,'BGN','NP',5,10),(339,'BGN','PE',5,10),(340,'BGN','UA',5,10),(341,'BGN','MZ',5,10),(342,'BGN','TZ',5,10),(343,'BGN','AO',5,10),(344,'BGN','JO',5,10),(345,'BGN','ZW',5,10),(346,'BGN','TR',5,10),(347,'BGN','MU',5,10),(348,'BGN','SV',5,10),(349,'BGN','TH',5,10),(350,'BGN','CO',5,10),(351,'BGN','LK',5,10),(352,'BGN','CR',5,10),(353,'BGN','AR',5,10),(354,'BGN','MA',5,10),(355,'BGN','MY',5,10),(356,'BGN','KZ',5,10),(357,'BGN','DZ',5,10),(358,'BGN','ID',5,10),(359,'BGN','NG',5,10),(360,'BGN','GT',5,10),(361,'BGN','VN',5,10),(362,'BGN','BY',5,10),(363,'BGN','EG',5,10),(364,'BGN','UY',5,10),(365,'BGN','BD',5,10),(366,'BGN','PK',5,10),(367,'BGN','PH',5,10),(368,'BGN','ET',5,10),(369,'BGN','TN',5,10),(370,'BGN','LB',5,10),(371,'BGN','IN',5,10),(372,'BGN','PY',5,10),(373,'BGN','UZ',5,10),(374,'BGN','EC',5,10),(375,'BGN','MM',5,10),(376,'BGN','GE',5,10),(377,'BOB','US',80,230),(378,'BOB','CH',75,200),(379,'BOB','AU',70,175),(380,'BOB','GB',60,155),(381,'BOB','DE',60,150),(382,'BOB','DK',55,135),(383,'BOB','AT',40,125),(384,'BOB','NO',45,125),(385,'BOB','CA',50,155),(386,'BOB','NL',55,135),(387,'BOB','SE',45,115),(388,'BOB','IE',40,110),(389,'BOB','BE',40,115),(390,'BOB','FI',30,90),(391,'BOB','FR',35,95),(392,'BOB','NZ',35,110),(393,'BOB','HK',35,95),(394,'BOB','CZ',30,75),(395,'BOB','SK',30,65),(396,'BOB','AE',30,90),(397,'BOB','SG',35,110),(398,'BOB','IL',30,80),(399,'BOB','KW',15,70),(400,'BOB','IT',20,60),(401,'BOB','JP',30,80),(402,'BOB','ES',25,60),(403,'BOB','VE',5,45),(404,'BOB','HU',20,45),(405,'BOB','PT',20,50),(406,'BOB','GR',25,50),(407,'BOB','KR',30,75),(408,'BOB','TW',25,65),(409,'BOB','PL',20,50),(410,'BOB','ZM',5,15),(411,'BOB','PR',5,65),(412,'BOB','CI',5,15),(413,'BOB','RO',20,45),(414,'BOB','BH',10,45),(415,'BOB','PA',5,65),(416,'BOB','GH',5,20),(417,'BOB','KH',5,20),(418,'BOB','SN',5,20),(419,'BOB','SA',10,45),(420,'BOB','RU',10,40),(421,'BOB','UG',5,15),(422,'BOB','BR',15,30),(423,'BOB','NI',5,20),(424,'BOB','MG',5,15),(425,'BOB','DO',5,25),(426,'BOB','MX',10,35),(427,'BOB','OM',5,35),(428,'BOB','CM',5,25),(429,'BOB','ZA',10,35),(430,'BOB','CL',10,35),(431,'BOB','KE',5,15),(432,'BOB','NP',5,15),(433,'BOB','PE',5,30),(434,'BOB','UA',5,20),(435,'BOB','MZ',5,30),(436,'BOB','TZ',5,10),(437,'BOB','AO',5,15),(438,'BOB','JO',5,20),(439,'BOB','ZW',5,15),(440,'BOB','TR',5,20),(441,'BOB','MU',5,15),(442,'BOB','SV',5,15),(443,'BOB','TH',10,35),(444,'BOB','CO',5,20),(445,'BOB','LK',5,10),(446,'BOB','CR',5,20),(447,'BOB','AR',10,20),(448,'BOB','MA',5,15),(449,'BOB','MY',10,35),(450,'BOB','KZ',5,15),(451,'BOB','DZ',5,10),(452,'BOB','ID',10,30),(453,'BOB','NG',5,30),(454,'BOB','GT',5,25),(455,'BOB','VN',5,25),(456,'BOB','BY',5,15),(457,'BOB','EG',5,25),(458,'BOB','UY',5,15),(459,'BOB','BD',5,10),(460,'BOB','PK',5,20),(461,'BOB','PH',5,20),(462,'BOB','ET',5,10),(463,'BOB','TN',5,10),(464,'BOB','LB',5,10),(465,'BOB','IN',5,15),(466,'BOB','PY',5,10),(467,'BOB','UZ',5,10),(468,'BOB','EC',5,10),(469,'BOB','MM',5,10),(470,'BOB','GE',5,10),(471,'BRL','US',65,175),(472,'BRL','CH',60,155),(473,'BRL','AU',55,135),(474,'BRL','GB',45,120),(475,'BRL','DE',45,115),(476,'BRL','DK',40,105),(477,'BRL','AT',30,95),(478,'BRL','NO',35,100),(479,'BRL','CA',40,120),(480,'BRL','NL',40,105),(481,'BRL','SE',35,90),(482,'BRL','IE',35,85),(483,'BRL','BE',30,90),(484,'BRL','FI',20,70),(485,'BRL','FR',30,75),(486,'BRL','NZ',30,85),(487,'BRL','HK',25,75),(488,'BRL','CZ',25,60),(489,'BRL','SK',25,50),(490,'BRL','AE',20,70),(491,'BRL','SG',30,85),(492,'BRL','IL',25,60),(493,'BRL','KW',10,55),(494,'BRL','IT',15,45),(495,'BRL','JP',20,60),(496,'BRL','ES',15,45),(497,'BRL','VE',5,35),(498,'BRL','HU',15,35),(499,'BRL','PT',15,40),(500,'BRL','GR',20,35),(501,'BRL','KR',20,60),(502,'BRL','TW',20,50),(503,'BRL','PL',15,40),(504,'BRL','ZM',5,15),(505,'BRL','PR',5,50),(506,'BRL','CI',5,10),(507,'BRL','RO',15,35),(508,'BRL','BH',5,35),(509,'BRL','PA',5,50),(510,'BRL','GH',5,15),(511,'BRL','KH',5,15),(512,'BRL','SN',5,15),(513,'BRL','SA',10,35),(514,'BRL','RU',10,30),(515,'BRL','UG',5,10),(516,'BRL','BR',10,25),(517,'BRL','NI',5,15),(518,'BRL','MG',5,10),(519,'BRL','DO',5,20),(520,'BRL','MX',5,25),(521,'BRL','OM',5,25),(522,'BRL','CM',5,20),(523,'BRL','ZA',10,30),(524,'BRL','CL',10,30),(525,'BRL','KE',5,10),(526,'BRL','NP',5,10),(527,'BRL','PE',5,25),(528,'BRL','UA',5,15),(529,'BRL','MZ',5,20),(530,'BRL','TZ',5,10),(531,'BRL','AO',5,15),(532,'BRL','JO',5,15),(533,'BRL','ZW',5,10),(534,'BRL','TR',5,15),(535,'BRL','MU',5,10),(536,'BRL','SV',5,10),(537,'BRL','TH',10,25),(538,'BRL','CO',5,15),(539,'BRL','LK',5,10),(540,'BRL','CR',5,15),(541,'BRL','AR',5,15),(542,'BRL','MA',5,10),(543,'BRL','MY',5,25),(544,'BRL','KZ',5,10),(545,'BRL','DZ',5,10),(546,'BRL','ID',5,25),(547,'BRL','NG',5,25),(548,'BRL','GT',5,20),(549,'BRL','VN',5,20),(550,'BRL','BY',5,10),(551,'BRL','EG',5,20),(552,'BRL','UY',5,10),(553,'BRL','BD',5,10),(554,'BRL','PK',5,15),(555,'BRL','PH',5,15),(556,'BRL','ET',5,10),(557,'BRL','TN',5,10),(558,'BRL','LB',5,10),(559,'BRL','IN',5,10),(560,'BRL','PY',5,10),(561,'BRL','UZ',5,10),(562,'BRL','EC',5,10),(563,'BRL','MM',5,10),(564,'BRL','GE',5,10),(565,'CAD','US',15,40),(566,'CAD','CH',15,35),(567,'CAD','AU',15,35),(568,'CAD','GB',10,30),(569,'CAD','DE',10,30),(570,'CAD','DK',10,25),(571,'CAD','AT',5,25),(572,'CAD','NO',10,25),(573,'CAD','CA',10,30),(574,'CAD','NL',10,25),(575,'CAD','SE',10,20),(576,'CAD','IE',10,20),(577,'CAD','BE',5,20),(578,'CAD','FI',5,15),(579,'CAD','FR',5,20),(580,'CAD','NZ',5,20),(581,'CAD','HK',5,15),(582,'CAD','CZ',5,15),(583,'CAD','SK',5,10),(584,'CAD','AE',5,15),(585,'CAD','SG',5,20),(586,'CAD','IL',5,15),(587,'CAD','KW',5,15),(588,'CAD','IT',5,10),(589,'CAD','JP',5,15),(590,'CAD','ES',5,10),(591,'CAD','VE',5,10),(592,'CAD','HU',5,10),(593,'CAD','PT',5,10),(594,'CAD','GR',5,10),(595,'CAD','KR',5,15),(596,'CAD','TW',5,10),(597,'CAD','PL',5,10),(598,'CAD','ZM',5,10),(599,'CAD','PR',5,10),(600,'CAD','CI',5,10),(601,'CAD','RO',5,10),(602,'CAD','BH',5,10),(603,'CAD','PA',5,10),(604,'CAD','GH',5,10),(605,'CAD','KH',5,10),(606,'CAD','SN',5,10),(607,'CAD','SA',5,10),(608,'CAD','RU',5,10),(609,'CAD','UG',5,10),(610,'CAD','BR',5,10),(611,'CAD','NI',5,10),(612,'CAD','MG',5,10),(613,'CAD','DO',5,10),(614,'CAD','MX',5,10),(615,'CAD','OM',5,10),(616,'CAD','CM',5,10),(617,'CAD','ZA',5,10),(618,'CAD','CL',5,10),(619,'CAD','KE',5,10),(620,'CAD','NP',5,10),(621,'CAD','PE',5,10),(622,'CAD','UA',5,10),(623,'CAD','MZ',5,10),(624,'CAD','TZ',5,10),(625,'CAD','AO',5,10),(626,'CAD','JO',5,10),(627,'CAD','ZW',5,10),(628,'CAD','TR',5,10),(629,'CAD','MU',5,10),(630,'CAD','SV',5,10),(631,'CAD','TH',5,10),(632,'CAD','CO',5,10),(633,'CAD','LK',5,10),(634,'CAD','CR',5,10),(635,'CAD','AR',5,10),(636,'CAD','MA',5,10),(637,'CAD','MY',5,10),(638,'CAD','KZ',5,10),(639,'CAD','DZ',5,10),(640,'CAD','ID',5,10),(641,'CAD','NG',5,10),(642,'CAD','GT',5,10),(643,'CAD','VN',5,10),(644,'CAD','BY',5,10),(645,'CAD','EG',5,10),(646,'CAD','UY',5,10),(647,'CAD','BD',5,10),(648,'CAD','PK',5,10),(649,'CAD','PH',5,10),(650,'CAD','ET',5,10),(651,'CAD','TN',5,10),(652,'CAD','LB',5,10),(653,'CAD','IN',5,10),(654,'CAD','PY',5,10),(655,'CAD','UZ',5,10),(656,'CAD','EC',5,10),(657,'CAD','MM',5,10),(658,'CAD','GE',5,10),(659,'CHF','US',10,30),(660,'CHF','CH',10,25),(661,'CHF','AU',10,25),(662,'CHF','GB',10,20),(663,'CHF','DE',10,20),(664,'CHF','DK',5,20),(665,'CHF','AT',5,15),(666,'CHF','NO',5,15),(667,'CHF','CA',5,20),(668,'CHF','NL',5,20),(669,'CHF','SE',5,15),(670,'CHF','IE',5,15),(671,'CHF','BE',5,15),(672,'CHF','FI',5,10),(673,'CHF','FR',5,10),(674,'CHF','NZ',5,15),(675,'CHF','HK',5,10),(676,'CHF','CZ',5,10),(677,'CHF','SK',5,10),(678,'CHF','AE',5,10),(679,'CHF','SG',5,15),(680,'CHF','IL',5,10),(681,'CHF','KW',5,10),(682,'CHF','IT',5,10),(683,'CHF','JP',5,10),(684,'CHF','ES',5,10),(685,'CHF','VE',5,10),(686,'CHF','HU',5,10),(687,'CHF','PT',5,10),(688,'CHF','GR',5,10),(689,'CHF','KR',5,10),(690,'CHF','TW',5,10),(691,'CHF','PL',5,10),(692,'CHF','ZM',5,10),(693,'CHF','PR',5,10),(694,'CHF','CI',5,10),(695,'CHF','RO',5,10),(696,'CHF','BH',5,10),(697,'CHF','PA',5,10),(698,'CHF','GH',5,10),(699,'CHF','KH',5,10),(700,'CHF','SN',5,10),(701,'CHF','SA',5,10),(702,'CHF','RU',5,10),(703,'CHF','UG',5,10),(704,'CHF','BR',5,10),(705,'CHF','NI',5,10),(706,'CHF','MG',5,10),(707,'CHF','DO',5,10),(708,'CHF','MX',5,10),(709,'CHF','OM',5,10),(710,'CHF','CM',5,10),(711,'CHF','ZA',5,10),(712,'CHF','CL',5,10),(713,'CHF','KE',5,10),(714,'CHF','NP',5,10),(715,'CHF','PE',5,10),(716,'CHF','UA',5,10),(717,'CHF','MZ',5,10),(718,'CHF','TZ',5,10),(719,'CHF','AO',5,10),(720,'CHF','JO',5,10),(721,'CHF','ZW',5,10),(722,'CHF','TR',5,10),(723,'CHF','MU',5,10),(724,'CHF','SV',5,10),(725,'CHF','TH',5,10),(726,'CHF','CO',5,10),(727,'CHF','LK',5,10),(728,'CHF','CR',5,10),(729,'CHF','AR',5,10),(730,'CHF','MA',5,10),(731,'CHF','MY',5,10),(732,'CHF','KZ',5,10),(733,'CHF','DZ',5,10),(734,'CHF','ID',5,10),(735,'CHF','NG',5,10),(736,'CHF','GT',5,10),(737,'CHF','VN',5,10),(738,'CHF','BY',5,10),(739,'CHF','EG',5,10),(740,'CHF','UY',5,10),(741,'CHF','BD',5,10),(742,'CHF','PK',5,10),(743,'CHF','PH',5,10),(744,'CHF','ET',5,10),(745,'CHF','TN',5,10),(746,'CHF','LB',5,10),(747,'CHF','IN',5,10),(748,'CHF','PY',5,10),(749,'CHF','UZ',5,10),(750,'CHF','EC',5,10),(751,'CHF','MM',5,10),(752,'CHF','GE',5,10),(753,'CLP','US',8700,24555),(754,'CLP','CH',8115,21355),(755,'CLP','AU',7385,18960),(756,'CLP','GB',6440,16475),(757,'CLP','DE',6390,16340),(758,'CLP','DK',5880,14590),(759,'CLP','AT',4290,13330),(760,'CLP','NO',4860,13575),(761,'CLP','CA',5375,16480),(762,'CLP','NL',5750,14595),(763,'CLP','SE',4605,12445),(764,'CLP','IE',4555,12005),(765,'CLP','BE',4190,12275),(766,'CLP','FI',3130,9510),(767,'CLP','FR',3875,10380),(768,'CLP','NZ',3945,11615),(769,'CLP','HK',3590,10150),(770,'CLP','CZ',3420,8215),(771,'CLP','SK',3230,6995),(772,'CLP','AE',3045,9560),(773,'CLP','SG',3975,11745),(774,'CLP','IL',3470,8485),(775,'CLP','KW',1565,7625),(776,'CLP','IT',2360,6235),(777,'CLP','JP',2960,8415),(778,'CLP','ES',2425,6420),(779,'CLP','VE',320,4915),(780,'CLP','HU',2045,4760),(781,'CLP','PT',2040,5320),(782,'CLP','GR',2515,5155),(783,'CLP','KR',3105,8220),(784,'CLP','TW',2525,6755),(785,'CLP','PL',2160,5345),(786,'CLP','ZM',310,1780),(787,'CLP','PR',760,7165),(788,'CLP','CI',415,1720),(789,'CLP','RO',1985,4795),(790,'CLP','BH',900,4990),(791,'CLP','PA',605,6850),(792,'CLP','GH',725,2015),(793,'CLP','KH',415,2000),(794,'CLP','SN',305,2175),(795,'CLP','SA',1295,4955),(796,'CLP','RU',1285,4105),(797,'CLP','UG',300,1590),(798,'CLP','BR',1370,3380),(799,'CLP','NI',300,2165),(800,'CLP','MG',305,1535),(801,'CLP','DO',365,2545),(802,'CLP','MX',1035,3740),(803,'CLP','OM',650,3740),(804,'CLP','CM',300,2790),(805,'CLP','ZA',1230,3965),(806,'CLP','CL',1285,3835),(807,'CLP','KE',370,1600),(808,'CLP','NP',300,1455),(809,'CLP','PE',765,3225),(810,'CLP','UA',730,2285),(811,'CLP','MZ',300,3030),(812,'CLP','TZ',40,695),(813,'CLP','AO',670,1740),(814,'CLP','JO',490,2340),(815,'CLP','ZW',305,1660),(816,'CLP','TR',785,2145),(817,'CLP','MU',400,1375),(818,'CLP','SV',300,1665),(819,'CLP','TH',1175,3705),(820,'CLP','CO',595,2310),(821,'CLP','LK',290,400),(822,'CLP','CR',365,2415),(823,'CLP','AR',815,2200),(824,'CLP','MA',365,1425),(825,'CLP','MY',1030,3785),(826,'CLP','KZ',440,1610),(827,'CLP','DZ',360,765),(828,'CLP','ID',920,3410),(829,'CLP','NG',515,3265),(830,'CLP','GT',360,2560),(831,'CLP','VN',750,2850),(832,'CLP','BY',355,1375),(833,'CLP','EG',475,2910),(834,'CLP','UY',375,1730),(835,'CLP','BD',310,685),(836,'CLP','PK',340,1950),(837,'CLP','PH',585,2165),(838,'CLP','ET',95,715),(839,'CLP','TN',360,655),(840,'CLP','LB',365,1090),(841,'CLP','IN',335,1520),(842,'CLP','PY',360,1165),(843,'CLP','UZ',360,705),(844,'CLP','EC',350,1205),(845,'CLP','MM',360,395),(846,'CLP','GE',365,465),(847,'CNY','US',75,215),(848,'CNY','CH',70,185),(849,'CNY','AU',65,165),(850,'CNY','GB',55,145),(851,'CNY','DE',55,145),(852,'CNY','DK',50,130),(853,'CNY','AT',40,115),(854,'CNY','NO',45,120),(855,'CNY','CA',45,145),(856,'CNY','NL',50,130),(857,'CNY','SE',40,110),(858,'CNY','IE',40,105),(859,'CNY','BE',35,110),(860,'CNY','FI',25,85),(861,'CNY','FR',35,90),(862,'CNY','NZ',35,100),(863,'CNY','HK',30,90),(864,'CNY','CZ',30,70),(865,'CNY','SK',30,60),(866,'CNY','AE',25,85),(867,'CNY','SG',35,105),(868,'CNY','IL',30,75),(869,'CNY','KW',15,65),(870,'CNY','IT',20,55),(871,'CNY','JP',25,75),(872,'CNY','ES',20,55),(873,'CNY','VE',5,45),(874,'CNY','HU',20,40),(875,'CNY','PT',20,45),(876,'CNY','GR',20,45),(877,'CNY','KR',25,70),(878,'CNY','TW',20,60),(879,'CNY','PL',20,45),(880,'CNY','ZM',5,15),(881,'CNY','PR',5,65),(882,'CNY','CI',5,15),(883,'CNY','RO',15,40),(884,'CNY','BH',10,45),(885,'CNY','PA',5,60),(886,'CNY','GH',5,20),(887,'CNY','KH',5,20),(888,'CNY','SN',5,20),(889,'CNY','SA',10,45),(890,'CNY','RU',10,35),(891,'CNY','UG',5,15),(892,'CNY','BR',10,30),(893,'CNY','NI',5,20),(894,'CNY','MG',5,15),(895,'CNY','DO',5,20),(896,'CNY','MX',10,35),(897,'CNY','OM',5,35),(898,'CNY','CM',5,25),(899,'CNY','ZA',10,35),(900,'CNY','CL',10,35),(901,'CNY','KE',5,15),(902,'CNY','NP',5,15),(903,'CNY','PE',5,30),(904,'CNY','UA',5,20),(905,'CNY','MZ',5,25),(906,'CNY','TZ',5,10),(907,'CNY','AO',5,15),(908,'CNY','JO',5,20),(909,'CNY','ZW',5,15),(910,'CNY','TR',5,20),(911,'CNY','MU',5,10),(912,'CNY','SV',5,15),(913,'CNY','TH',10,30),(914,'CNY','CO',5,20),(915,'CNY','LK',5,10),(916,'CNY','CR',5,20),(917,'CNY','AR',5,20),(918,'CNY','MA',5,10),(919,'CNY','MY',10,35),(920,'CNY','KZ',5,15),(921,'CNY','DZ',5,10),(922,'CNY','ID',10,30),(923,'CNY','NG',5,30),(924,'CNY','GT',5,20),(925,'CNY','VN',5,25),(926,'CNY','BY',5,10),(927,'CNY','EG',5,25),(928,'CNY','UY',5,15),(929,'CNY','BD',5,10),(930,'CNY','PK',5,15),(931,'CNY','PH',5,20),(932,'CNY','ET',5,10),(933,'CNY','TN',5,10),(934,'CNY','LB',5,10),(935,'CNY','IN',5,15),(936,'CNY','PY',5,10),(937,'CNY','UZ',5,10),(938,'CNY','EC',5,10),(939,'CNY','MM',5,10),(940,'CNY','GE',5,10),(941,'COP','US',41010,115710),(942,'COP','CH',38240,100635),(943,'COP','AU',34795,89340),(944,'COP','GB',30340,77640),(945,'COP','DE',30105,77010),(946,'COP','DK',27700,68745),(947,'COP','AT',20215,62815),(948,'COP','NO',22910,63965),(949,'COP','CA',25325,77660),(950,'COP','NL',27095,68775),(951,'COP','SE',21690,58650),(952,'COP','IE',21465,56575),(953,'COP','BE',19735,57845),(954,'COP','FI',14755,44810),(955,'COP','FR',18270,48905),(956,'COP','NZ',18595,54740),(957,'COP','HK',16910,47820),(958,'COP','CZ',16120,38705),(959,'COP','SK',15210,32965),(960,'COP','AE',14355,45045),(961,'COP','SG',18730,55350),(962,'COP','IL',16345,39980),(963,'COP','KW',7370,35935),(964,'COP','IT',11125,29370),(965,'COP','JP',13950,39645),(966,'COP','ES',11435,30245),(967,'COP','VE',1500,23165),(968,'COP','HU',9635,22420),(969,'COP','PT',9620,25080),(970,'COP','GR',11860,24295),(971,'COP','KR',14625,38730),(972,'COP','TW',11885,31820),(973,'COP','PL',10170,25175),(974,'COP','ZM',1470,8380),(975,'COP','PR',3595,33775),(976,'COP','CI',1960,8100),(977,'COP','RO',9345,22605),(978,'COP','BH',4245,23520),(979,'COP','PA',2840,32285),(980,'COP','GH',3405,9505),(981,'COP','KH',1965,9430),(982,'COP','SN',1430,10245),(983,'COP','SA',6100,23350),(984,'COP','RU',6060,19340),(985,'COP','UG',1425,7485),(986,'COP','BR',6460,15930),(987,'COP','NI',1420,10200),(988,'COP','MG',1440,7230),(989,'COP','DO',1725,11990),(990,'COP','MX',4875,17635),(991,'COP','OM',3065,17635),(992,'COP','CM',1420,13140),(993,'COP','ZA',5805,18690),(994,'COP','CL',6050,18080),(995,'COP','KE',1745,7545),(996,'COP','NP',1420,6855),(997,'COP','PE',3615,15210),(998,'COP','UA',3445,10760),(999,'COP','MZ',1420,14270),(1000,'COP','TZ',180,3275),(1001,'COP','AO',3145,8205),(1002,'COP','JO',2320,11020),(1003,'COP','ZW',1425,7820),(1004,'COP','TR',3695,10115),(1005,'COP','MU',1895,6470),(1006,'COP','SV',1420,7835),(1007,'COP','TH',5545,17450),(1008,'COP','CO',2810,10885),(1009,'COP','LK',1365,1885),(1010,'COP','CR',1715,11390),(1011,'COP','AR',3830,10375),(1012,'COP','MA',1710,6715),(1013,'COP','MY',4855,17845),(1014,'COP','KZ',2075,7595),(1015,'COP','DZ',1700,3600),(1016,'COP','ID',4330,16065),(1017,'COP','NG',2435,15395),(1018,'COP','GT',1705,12060),(1019,'COP','VN',3545,13425),(1020,'COP','BY',1665,6475),(1021,'COP','EG',2245,13705),(1022,'COP','UY',1770,8150),(1023,'COP','BD',1455,3225),(1024,'COP','PK',1595,9190),(1025,'COP','PH',2765,10205),(1026,'COP','ET',445,3380),(1027,'COP','TN',1705,3085),(1028,'COP','LB',1720,5140),(1029,'COP','IN',1585,7160),(1030,'COP','PY',1705,5480),(1031,'COP','UZ',1705,3325),(1032,'COP','EC',1655,5685),(1033,'COP','MM',1705,1865),(1034,'COP','GE',1710,2180),(1035,'CZK','US',255,715),(1036,'CZK','CH',235,625),(1037,'CZK','AU',215,555),(1038,'CZK','GB',190,480),(1039,'CZK','DE',185,475),(1040,'CZK','DK',170,425),(1041,'CZK','AT',125,390),(1042,'CZK','NO',140,395),(1043,'CZK','CA',155,480),(1044,'CZK','NL',170,425),(1045,'CZK','SE',135,365),(1046,'CZK','IE',135,350),(1047,'CZK','BE',120,360),(1048,'CZK','FI',90,275),(1049,'CZK','FR',115,305),(1050,'CZK','NZ',115,340),(1051,'CZK','HK',105,295),(1052,'CZK','CZ',100,240),(1053,'CZK','SK',95,205),(1054,'CZK','AE',90,280),(1055,'CZK','SG',115,345),(1056,'CZK','IL',100,245),(1057,'CZK','KW',45,220),(1058,'CZK','IT',70,180),(1059,'CZK','JP',85,245),(1060,'CZK','ES',70,185),(1061,'CZK','VE',10,145),(1062,'CZK','HU',60,140),(1063,'CZK','PT',60,155),(1064,'CZK','GR',75,150),(1065,'CZK','KR',90,240),(1066,'CZK','TW',75,195),(1067,'CZK','PL',65,155),(1068,'CZK','ZM',10,50),(1069,'CZK','PR',20,210),(1070,'CZK','CI',10,50),(1071,'CZK','RO',60,140),(1072,'CZK','BH',25,145),(1073,'CZK','PA',20,200),(1074,'CZK','GH',20,60),(1075,'CZK','KH',10,60),(1076,'CZK','SN',10,65),(1077,'CZK','SA',40,145),(1078,'CZK','RU',40,120),(1079,'CZK','UG',10,45),(1080,'CZK','BR',40,100),(1081,'CZK','NI',10,65),(1082,'CZK','MG',10,45),(1083,'CZK','DO',10,75),(1084,'CZK','MX',30,110),(1085,'CZK','OM',20,110),(1086,'CZK','CM',10,80),(1087,'CZK','ZA',35,115),(1088,'CZK','CL',35,110),(1089,'CZK','KE',10,45),(1090,'CZK','NP',10,40),(1091,'CZK','PE',20,95),(1092,'CZK','UA',20,65),(1093,'CZK','MZ',10,90),(1094,'CZK','TZ',5,20),(1095,'CZK','AO',20,50),(1096,'CZK','JO',15,70),(1097,'CZK','ZW',10,50),(1098,'CZK','TR',25,65),(1099,'CZK','MU',10,40),(1100,'CZK','SV',10,50),(1101,'CZK','TH',35,110),(1102,'CZK','CO',15,65),(1103,'CZK','LK',10,15),(1104,'CZK','CR',10,70),(1105,'CZK','AR',25,65),(1106,'CZK','MA',10,40),(1107,'CZK','MY',30,110),(1108,'CZK','KZ',15,45),(1109,'CZK','DZ',10,20),(1110,'CZK','ID',25,100),(1111,'CZK','NG',15,95),(1112,'CZK','GT',10,75),(1113,'CZK','VN',20,85),(1114,'CZK','BY',10,40),(1115,'CZK','EG',15,85),(1116,'CZK','UY',10,50),(1117,'CZK','BD',10,20),(1118,'CZK','PK',10,55),(1119,'CZK','PH',15,65),(1120,'CZK','ET',5,20),(1121,'CZK','TN',10,20),(1122,'CZK','LB',10,30),(1123,'CZK','IN',10,45),(1124,'CZK','PY',10,35),(1125,'CZK','UZ',10,20),(1126,'CZK','EC',10,35),(1127,'CZK','MM',10,15),(1128,'CZK','GE',10,15),(1129,'DKK','US',70,205),(1130,'DKK','CH',65,175),(1131,'DKK','AU',60,155),(1132,'DKK','GB',55,135),(1133,'DKK','DE',55,135),(1134,'DKK','DK',50,120),(1135,'DKK','AT',35,110),(1136,'DKK','NO',40,115),(1137,'DKK','CA',45,135),(1138,'DKK','NL',50,120),(1139,'DKK','SE',40,105),(1140,'DKK','IE',40,100),(1141,'DKK','BE',35,100),(1142,'DKK','FI',25,80),(1143,'DKK','FR',30,85),(1144,'DKK','NZ',35,95),(1145,'DKK','HK',30,85),(1146,'DKK','CZ',30,70),(1147,'DKK','SK',25,60),(1148,'DKK','AE',25,80),(1149,'DKK','SG',35,95),(1150,'DKK','IL',30,70),(1151,'DKK','KW',15,65),(1152,'DKK','IT',20,50),(1153,'DKK','JP',25,70),(1154,'DKK','ES',20,55),(1155,'DKK','VE',5,40),(1156,'DKK','HU',15,40),(1157,'DKK','PT',15,45),(1158,'DKK','GR',20,45),(1159,'DKK','KR',25,70),(1160,'DKK','TW',20,55),(1161,'DKK','PL',20,45),(1162,'DKK','ZM',5,15),(1163,'DKK','PR',5,60),(1164,'DKK','CI',5,15),(1165,'DKK','RO',15,40),(1166,'DKK','BH',5,40),(1167,'DKK','PA',5,55),(1168,'DKK','GH',5,15),(1169,'DKK','KH',5,15),(1170,'DKK','SN',5,20),(1171,'DKK','SA',10,40),(1172,'DKK','RU',10,35),(1173,'DKK','UG',5,15),(1174,'DKK','BR',10,30),(1175,'DKK','NI',5,20),(1176,'DKK','MG',5,15),(1177,'DKK','DO',5,20),(1178,'DKK','MX',10,30),(1179,'DKK','OM',5,30),(1180,'DKK','CM',5,25),(1181,'DKK','ZA',10,35),(1182,'DKK','CL',10,30),(1183,'DKK','KE',5,15),(1184,'DKK','NP',5,10),(1185,'DKK','PE',5,25),(1186,'DKK','UA',5,20),(1187,'DKK','MZ',5,25),(1188,'DKK','TZ',5,10),(1189,'DKK','AO',5,15),(1190,'DKK','JO',5,20),(1191,'DKK','ZW',5,15),(1192,'DKK','TR',5,20),(1193,'DKK','MU',5,10),(1194,'DKK','SV',5,15),(1195,'DKK','TH',10,30),(1196,'DKK','CO',5,20),(1197,'DKK','LK',5,10),(1198,'DKK','CR',5,20),(1199,'DKK','AR',5,20),(1200,'DKK','MA',5,10),(1201,'DKK','MY',10,30),(1202,'DKK','KZ',5,15),(1203,'DKK','DZ',5,10),(1204,'DKK','ID',10,30),(1205,'DKK','NG',5,25),(1206,'DKK','GT',5,20),(1207,'DKK','VN',5,25),(1208,'DKK','BY',5,10),(1209,'DKK','EG',5,25),(1210,'DKK','UY',5,15),(1211,'DKK','BD',5,10),(1212,'DKK','PK',5,15),(1213,'DKK','PH',5,20),(1214,'DKK','ET',5,10),(1215,'DKK','TN',5,10),(1216,'DKK','LB',5,10),(1217,'DKK','IN',5,15),(1218,'DKK','PY',5,10),(1219,'DKK','UZ',5,10),(1220,'DKK','EC',5,10),(1221,'DKK','MM',5,10),(1222,'DKK','GE',5,10),(1223,'EGP','US',185,520),(1224,'EGP','CH',170,455),(1225,'EGP','AU',155,400),(1226,'EGP','GB',135,350),(1227,'EGP','DE',135,345),(1228,'EGP','DK',125,310),(1229,'EGP','AT',90,285),(1230,'EGP','NO',105,290),(1231,'EGP','CA',115,350),(1232,'EGP','NL',120,310),(1233,'EGP','SE',100,265),(1234,'EGP','IE',95,255),(1235,'EGP','BE',90,260),(1236,'EGP','FI',65,200),(1237,'EGP','FR',80,220),(1238,'EGP','NZ',85,245),(1239,'EGP','HK',75,215),(1240,'EGP','CZ',75,175),(1241,'EGP','SK',70,150),(1242,'EGP','AE',65,205),(1243,'EGP','SG',85,250),(1244,'EGP','IL',75,180),(1245,'EGP','KW',35,160),(1246,'EGP','IT',50,130),(1247,'EGP','JP',65,180),(1248,'EGP','ES',50,135),(1249,'EGP','VE',5,105),(1250,'EGP','HU',45,100),(1251,'EGP','PT',45,115),(1252,'EGP','GR',55,110),(1253,'EGP','KR',65,175),(1254,'EGP','TW',55,145),(1255,'EGP','PL',45,115),(1256,'EGP','ZM',5,40),(1257,'EGP','PR',15,150),(1258,'EGP','CI',10,35),(1259,'EGP','RO',40,100),(1260,'EGP','BH',20,105),(1261,'EGP','PA',15,145),(1262,'EGP','GH',15,45),(1263,'EGP','KH',10,40),(1264,'EGP','SN',5,45),(1265,'EGP','SA',25,105),(1266,'EGP','RU',25,85),(1267,'EGP','UG',5,35),(1268,'EGP','BR',30,70),(1269,'EGP','NI',5,45),(1270,'EGP','MG',5,35),(1271,'EGP','DO',10,55),(1272,'EGP','MX',20,80),(1273,'EGP','OM',15,80),(1274,'EGP','CM',5,60),(1275,'EGP','ZA',25,85),(1276,'EGP','CL',25,80),(1277,'EGP','KE',10,35),(1278,'EGP','NP',5,30),(1279,'EGP','PE',15,70),(1280,'EGP','UA',15,50),(1281,'EGP','MZ',5,65),(1282,'EGP','TZ',5,15),(1283,'EGP','AO',15,35),(1284,'EGP','JO',10,50),(1285,'EGP','ZW',5,35),(1286,'EGP','TR',15,45),(1287,'EGP','MU',10,30),(1288,'EGP','SV',5,35),(1289,'EGP','TH',25,80),(1290,'EGP','CO',15,50),(1291,'EGP','LK',5,10),(1292,'EGP','CR',10,50),(1293,'EGP','AR',15,45),(1294,'EGP','MA',10,30),(1295,'EGP','MY',20,80),(1296,'EGP','KZ',10,35),(1297,'EGP','DZ',10,15),(1298,'EGP','ID',20,70),(1299,'EGP','NG',10,70),(1300,'EGP','GT',10,55),(1301,'EGP','VN',15,60),(1302,'EGP','BY',5,30),(1303,'EGP','EG',10,60),(1304,'EGP','UY',10,35),(1305,'EGP','BD',5,15),(1306,'EGP','PK',5,40),(1307,'EGP','PH',10,45),(1308,'EGP','ET',5,15),(1309,'EGP','TN',10,15),(1310,'EGP','LB',10,25),(1311,'EGP','IN',5,30),(1312,'EGP','PY',10,25),(1313,'EGP','UZ',10,15),(1314,'EGP','EC',5,25),(1315,'EGP','MM',10,15),(1316,'EGP','GE',10,15),(1317,'EUR','US',10,25),(1318,'EUR','CH',10,25),(1319,'EUR','AU',10,20),(1320,'EUR','GB',5,20),(1321,'EUR','DE',5,20),(1322,'EUR','DK',5,15),(1323,'EUR','AT',5,15),(1324,'EUR','NO',5,15),(1325,'EUR','CA',5,20),(1326,'EUR','NL',5,15),(1327,'EUR','SE',5,15),(1328,'EUR','IE',5,15),(1329,'EUR','BE',5,15),(1330,'EUR','FI',5,10),(1331,'EUR','FR',5,10),(1332,'EUR','NZ',5,15),(1333,'EUR','HK',5,10),(1334,'EUR','CZ',5,10),(1335,'EUR','SK',5,10),(1336,'EUR','AE',5,10),(1337,'EUR','SG',5,15),(1338,'EUR','IL',5,10),(1339,'EUR','KW',5,10),(1340,'EUR','IT',5,10),(1341,'EUR','JP',5,10),(1342,'EUR','ES',5,10),(1343,'EUR','VE',5,10),(1344,'EUR','HU',5,10),(1345,'EUR','PT',5,10),(1346,'EUR','GR',5,10),(1347,'EUR','KR',5,10),(1348,'EUR','TW',5,10),(1349,'EUR','PL',5,10),(1350,'EUR','ZM',5,10),(1351,'EUR','PR',5,10),(1352,'EUR','CI',5,10),(1353,'EUR','RO',5,10),(1354,'EUR','BH',5,10),(1355,'EUR','PA',5,10),(1356,'EUR','GH',5,10),(1357,'EUR','KH',5,10),(1358,'EUR','SN',5,10),(1359,'EUR','SA',5,10),(1360,'EUR','RU',5,10),(1361,'EUR','UG',5,10),(1362,'EUR','BR',5,10),(1363,'EUR','NI',5,10),(1364,'EUR','MG',5,10),(1365,'EUR','DO',5,10),(1366,'EUR','MX',5,10),(1367,'EUR','OM',5,10),(1368,'EUR','CM',5,10),(1369,'EUR','ZA',5,10),(1370,'EUR','CL',5,10),(1371,'EUR','KE',5,10),(1372,'EUR','NP',5,10),(1373,'EUR','PE',5,10),(1374,'EUR','UA',5,10),(1375,'EUR','MZ',5,10),(1376,'EUR','TZ',5,10),(1377,'EUR','AO',5,10),(1378,'EUR','JO',5,10),(1379,'EUR','ZW',5,10),(1380,'EUR','TR',5,10),(1381,'EUR','MU',5,10),(1382,'EUR','SV',5,10),(1383,'EUR','TH',5,10),(1384,'EUR','CO',5,10),(1385,'EUR','LK',5,10),(1386,'EUR','CR',5,10),(1387,'EUR','AR',5,10),(1388,'EUR','MA',5,10),(1389,'EUR','MY',5,10),(1390,'EUR','KZ',5,10),(1391,'EUR','DZ',5,10),(1392,'EUR','ID',5,10),(1393,'EUR','NG',5,10),(1394,'EUR','GT',5,10),(1395,'EUR','VN',5,10),(1396,'EUR','BY',5,10),(1397,'EUR','EG',5,10),(1398,'EUR','UY',5,10),(1399,'EUR','BD',5,10),(1400,'EUR','PK',5,10),(1401,'EUR','PH',5,10),(1402,'EUR','ET',5,10),(1403,'EUR','TN',5,10),(1404,'EUR','LB',5,10),(1405,'EUR','IN',5,10),(1406,'EUR','PY',5,10),(1407,'EUR','UZ',5,10),(1408,'EUR','EC',5,10),(1409,'EUR','MM',5,10),(1410,'EUR','GE',5,10),(1411,'GBP','US',10,25),(1412,'GBP','CH',10,20),(1413,'GBP','AU',5,20),(1414,'GBP','GB',5,15),(1415,'GBP','DE',5,15),(1416,'GBP','DK',5,15),(1417,'GBP','AT',5,15),(1418,'GBP','NO',5,15),(1419,'GBP','CA',5,15),(1420,'GBP','NL',5,15),(1421,'GBP','SE',5,10),(1422,'GBP','IE',5,10),(1423,'GBP','BE',5,10),(1424,'GBP','FI',5,10),(1425,'GBP','FR',5,10),(1426,'GBP','NZ',5,10),(1427,'GBP','HK',5,10),(1428,'GBP','CZ',5,10),(1429,'GBP','SK',5,10),(1430,'GBP','AE',5,10),(1431,'GBP','SG',5,10),(1432,'GBP','IL',5,10),(1433,'GBP','KW',5,10),(1434,'GBP','IT',5,10),(1435,'GBP','JP',5,10),(1436,'GBP','ES',5,10),(1437,'GBP','VE',5,10),(1438,'GBP','HU',5,10),(1439,'GBP','PT',5,10),(1440,'GBP','GR',5,10),(1441,'GBP','KR',5,10),(1442,'GBP','TW',5,10),(1443,'GBP','PL',5,10),(1444,'GBP','ZM',5,10),(1445,'GBP','PR',5,10),(1446,'GBP','CI',5,10),(1447,'GBP','RO',5,10),(1448,'GBP','BH',5,10),(1449,'GBP','PA',5,10),(1450,'GBP','GH',5,10),(1451,'GBP','KH',5,10),(1452,'GBP','SN',5,10),(1453,'GBP','SA',5,10),(1454,'GBP','RU',5,10),(1455,'GBP','UG',5,10),(1456,'GBP','BR',5,10),(1457,'GBP','NI',5,10),(1458,'GBP','MG',5,10),(1459,'GBP','DO',5,10),(1460,'GBP','MX',5,10),(1461,'GBP','OM',5,10),(1462,'GBP','CM',5,10),(1463,'GBP','ZA',5,10),(1464,'GBP','CL',5,10),(1465,'GBP','KE',5,10),(1466,'GBP','NP',5,10),(1467,'GBP','PE',5,10),(1468,'GBP','UA',5,10),(1469,'GBP','MZ',5,10),(1470,'GBP','TZ',5,10),(1471,'GBP','AO',5,10),(1472,'GBP','JO',5,10),(1473,'GBP','ZW',5,10),(1474,'GBP','TR',5,10),(1475,'GBP','MU',5,10),(1476,'GBP','SV',5,10),(1477,'GBP','TH',5,10),(1478,'GBP','CO',5,10),(1479,'GBP','LK',5,10),(1480,'GBP','CR',5,10),(1481,'GBP','AR',5,10),(1482,'GBP','MA',5,10),(1483,'GBP','MY',5,10),(1484,'GBP','KZ',5,10),(1485,'GBP','DZ',5,10),(1486,'GBP','ID',5,10),(1487,'GBP','NG',5,10),(1488,'GBP','GT',5,10),(1489,'GBP','VN',5,10),(1490,'GBP','BY',5,10),(1491,'GBP','EG',5,10),(1492,'GBP','UY',5,10),(1493,'GBP','BD',5,10),(1494,'GBP','PK',5,10),(1495,'GBP','PH',5,10),(1496,'GBP','ET',5,10),(1497,'GBP','TN',5,10),(1498,'GBP','LB',5,10),(1499,'GBP','IN',5,10),(1500,'GBP','PY',5,10),(1501,'GBP','UZ',5,10),(1502,'GBP','EC',5,10),(1503,'GBP','MM',5,10),(1504,'GBP','GE',5,10),(1505,'HKD','US',90,260),(1506,'HKD','CH',85,225),(1507,'HKD','AU',80,200),(1508,'HKD','GB',70,175),(1509,'HKD','DE',65,170),(1510,'HKD','DK',60,155),(1511,'HKD','AT',45,140),(1512,'HKD','NO',50,145),(1513,'HKD','CA',55,175),(1514,'HKD','NL',60,155),(1515,'HKD','SE',50,130),(1516,'HKD','IE',50,125),(1517,'HKD','BE',45,130),(1518,'HKD','FI',35,100),(1519,'HKD','FR',40,110),(1520,'HKD','NZ',40,120),(1521,'HKD','HK',40,105),(1522,'HKD','CZ',35,85),(1523,'HKD','SK',35,75),(1524,'HKD','AE',30,100),(1525,'HKD','SG',40,125),(1526,'HKD','IL',35,90),(1527,'HKD','KW',15,80),(1528,'HKD','IT',25,65),(1529,'HKD','JP',30,90),(1530,'HKD','ES',25,65),(1531,'HKD','VE',5,50),(1532,'HKD','HU',20,50),(1533,'HKD','PT',20,55),(1534,'HKD','GR',25,55),(1535,'HKD','KR',35,85),(1536,'HKD','TW',25,70),(1537,'HKD','PL',25,55),(1538,'HKD','ZM',5,20),(1539,'HKD','PR',10,75),(1540,'HKD','CI',5,20),(1541,'HKD','RO',20,50),(1542,'HKD','BH',10,50),(1543,'HKD','PA',5,70),(1544,'HKD','GH',10,20),(1545,'HKD','KH',5,20),(1546,'HKD','SN',5,25),(1547,'HKD','SA',15,50),(1548,'HKD','RU',15,45),(1549,'HKD','UG',5,15),(1550,'HKD','BR',15,35),(1551,'HKD','NI',5,25),(1552,'HKD','MG',5,15),(1553,'HKD','DO',5,25),(1554,'HKD','MX',10,40),(1555,'HKD','OM',5,40),(1556,'HKD','CM',5,30),(1557,'HKD','ZA',15,40),(1558,'HKD','CL',15,40),(1559,'HKD','KE',5,15),(1560,'HKD','NP',5,15),(1561,'HKD','PE',10,35),(1562,'HKD','UA',10,25),(1563,'HKD','MZ',5,30),(1564,'HKD','TZ',5,10),(1565,'HKD','AO',5,20),(1566,'HKD','JO',5,25),(1567,'HKD','ZW',5,15),(1568,'HKD','TR',10,25),(1569,'HKD','MU',5,15),(1570,'HKD','SV',5,15),(1571,'HKD','TH',10,40),(1572,'HKD','CO',5,25),(1573,'HKD','LK',5,10),(1574,'HKD','CR',5,25),(1575,'HKD','AR',10,25),(1576,'HKD','MA',5,15),(1577,'HKD','MY',10,40),(1578,'HKD','KZ',5,15),(1579,'HKD','DZ',5,10),(1580,'HKD','ID',10,35),(1581,'HKD','NG',5,35),(1582,'HKD','GT',5,25),(1583,'HKD','VN',10,30),(1584,'HKD','BY',5,15),(1585,'HKD','EG',5,30),(1586,'HKD','UY',5,20),(1587,'HKD','BD',5,10),(1588,'HKD','PK',5,20),(1589,'HKD','PH',5,25),(1590,'HKD','ET',5,10),(1591,'HKD','TN',5,10),(1592,'HKD','LB',5,10),(1593,'HKD','IN',5,15),(1594,'HKD','PY',5,10),(1595,'HKD','UZ',5,10),(1596,'HKD','EC',5,15),(1597,'HKD','MM',5,10),(1598,'HKD','GE',5,10),(1599,'HUF','US',3500,9870),(1600,'HUF','CH',3260,8585),(1601,'HUF','AU',2970,7620),(1602,'HUF','GB',2590,6625),(1603,'HUF','DE',2570,6570),(1604,'HUF','DK',2365,5865),(1605,'HUF','AT',1725,5360),(1606,'HUF','NO',1955,5455),(1607,'HUF','CA',2160,6625),(1608,'HUF','NL',2310,5865),(1609,'HUF','SE',1850,5005),(1610,'HUF','IE',1830,4825),(1611,'HUF','BE',1685,4935),(1612,'HUF','FI',1260,3825),(1613,'HUF','FR',1560,4170),(1614,'HUF','NZ',1585,4670),(1615,'HUF','HK',1445,4080),(1616,'HUF','CZ',1375,3300),(1617,'HUF','SK',1295,2810),(1618,'HUF','AE',1225,3845),(1619,'HUF','SG',1600,4720),(1620,'HUF','IL',1395,3410),(1621,'HUF','KW',630,3065),(1622,'HUF','IT',950,2505),(1623,'HUF','JP',1190,3380),(1624,'HUF','ES',975,2580),(1625,'HUF','VE',130,1975),(1626,'HUF','HU',820,1915),(1627,'HUF','PT',820,2140),(1628,'HUF','GR',1010,2070),(1629,'HUF','KR',1250,3305),(1630,'HUF','TW',1015,2715),(1631,'HUF','PL',870,2150),(1632,'HUF','ZM',125,715),(1633,'HUF','PR',305,2880),(1634,'HUF','CI',165,690),(1635,'HUF','RO',795,1930),(1636,'HUF','BH',360,2005),(1637,'HUF','PA',240,2755),(1638,'HUF','GH',290,810),(1639,'HUF','KH',165,805),(1640,'HUF','SN',120,875),(1641,'HUF','SA',520,1990),(1642,'HUF','RU',515,1650),(1643,'HUF','UG',120,640),(1644,'HUF','BR',550,1360),(1645,'HUF','NI',120,870),(1646,'HUF','MG',125,615),(1647,'HUF','DO',145,1025),(1648,'HUF','MX',415,1505),(1649,'HUF','OM',260,1505),(1650,'HUF','CM',120,1120),(1651,'HUF','ZA',495,1595),(1652,'HUF','CL',515,1540),(1653,'HUF','KE',150,645),(1654,'HUF','NP',120,585),(1655,'HUF','PE',310,1295),(1656,'HUF','UA',295,920),(1657,'HUF','MZ',120,1215),(1658,'HUF','TZ',15,280),(1659,'HUF','AO',270,700),(1660,'HUF','JO',200,940),(1661,'HUF','ZW',120,665),(1662,'HUF','TR',315,865),(1663,'HUF','MU',160,550),(1664,'HUF','SV',120,670),(1665,'HUF','TH',475,1490),(1666,'HUF','CO',240,930),(1667,'HUF','LK',115,160),(1668,'HUF','CR',145,970),(1669,'HUF','AR',325,885),(1670,'HUF','MA',145,575),(1671,'HUF','MY',415,1520),(1672,'HUF','KZ',175,650),(1673,'HUF','DZ',145,305),(1674,'HUF','ID',370,1370),(1675,'HUF','NG',210,1315),(1676,'HUF','GT',145,1030),(1677,'HUF','VN',300,1145),(1678,'HUF','BY',140,550),(1679,'HUF','EG',190,1170),(1680,'HUF','UY',150,695),(1681,'HUF','BD',125,275),(1682,'HUF','PK',135,785),(1683,'HUF','PH',235,870),(1684,'HUF','ET',40,290),(1685,'HUF','TN',145,265),(1686,'HUF','LB',145,440),(1687,'HUF','IN',135,610),(1688,'HUF','PY',145,465),(1689,'HUF','UZ',145,285),(1690,'HUF','EC',140,485),(1691,'HUF','MM',145,160),(1692,'HUF','GE',145,185),(1693,'IDR','US',166005,468405),(1694,'IDR','CH',154810,407370),(1695,'IDR','AU',140860,361660),(1696,'IDR','GB',122810,314285),(1697,'IDR','DE',121875,311745),(1698,'IDR','DK',112135,278285),(1699,'IDR','AT',81825,254270),(1700,'IDR','NO',92740,258940),(1701,'IDR','CA',102520,314385),(1702,'IDR','NL',109690,278400),(1703,'IDR','SE',87800,237425),(1704,'IDR','IE',86880,229025),(1705,'IDR','BE',79895,234155),(1706,'IDR','FI',59730,181395),(1707,'IDR','FR',73960,197970),(1708,'IDR','NZ',75275,221595),(1709,'IDR','HK',68450,193585),(1710,'IDR','CZ',65260,156680),(1711,'IDR','SK',61570,133435),(1712,'IDR','AE',58105,182350),(1713,'IDR','SG',75815,224065),(1714,'IDR','IL',66160,161835),(1715,'IDR','KW',29840,145460),(1716,'IDR','IT',45035,118890),(1717,'IDR','JP',56465,160485),(1718,'IDR','ES',46295,122430),(1719,'IDR','VE',6070,93775),(1720,'IDR','HU',39010,90770),(1721,'IDR','PT',38945,101515),(1722,'IDR','GR',48020,98345),(1723,'IDR','KR',59205,156780),(1724,'IDR','TW',48120,128815),(1725,'IDR','PL',41175,101920),(1726,'IDR','ZM',5945,33930),(1727,'IDR','PR',14545,136720),(1728,'IDR','CI',7935,32800),(1729,'IDR','RO',37820,91515),(1730,'IDR','BH',17175,95210),(1731,'IDR','PA',11505,130685),(1732,'IDR','GH',13790,38475),(1733,'IDR','KH',7950,38170),(1734,'IDR','SN',5785,41470),(1735,'IDR','SA',24685,94520),(1736,'IDR','RU',24535,78285),(1737,'IDR','UG',5765,30305),(1738,'IDR','BR',26155,64490),(1739,'IDR','NI',5755,41295),(1740,'IDR','MG',5820,29275),(1741,'IDR','DO',6980,48535),(1742,'IDR','MX',19725,71380),(1743,'IDR','OM',12400,71385),(1744,'IDR','CM',5745,53195),(1745,'IDR','ZA',23505,75650),(1746,'IDR','CL',24490,73180),(1747,'IDR','KE',7070,30545),(1748,'IDR','NP',5745,27745),(1749,'IDR','PE',14625,61565),(1750,'IDR','UA',13945,43550),(1751,'IDR','MZ',5745,57770),(1752,'IDR','TZ',725,13255),(1753,'IDR','AO',12740,33215),(1754,'IDR','JO',9395,44610),(1755,'IDR','ZW',5775,31660),(1756,'IDR','TR',14965,40940),(1757,'IDR','MU',7665,26185),(1758,'IDR','SV',5745,31720),(1759,'IDR','TH',22445,70630),(1760,'IDR','CO',11385,44060),(1761,'IDR','LK',5530,7635),(1762,'IDR','CR',6940,46100),(1763,'IDR','AR',15500,41990),(1764,'IDR','MA',6925,27175),(1765,'IDR','MY',19645,72245),(1766,'IDR','KZ',8405,30755),(1767,'IDR','DZ',6890,14580),(1768,'IDR','ID',17530,65030),(1769,'IDR','NG',9855,62330),(1770,'IDR','GT',6905,48810),(1771,'IDR','VN',14340,54355),(1772,'IDR','BY',6735,26215),(1773,'IDR','EG',9080,55475),(1774,'IDR','UY',7160,32995),(1775,'IDR','BD',5895,13050),(1776,'IDR','PK',6460,37200),(1777,'IDR','PH',11190,41300),(1778,'IDR','ET',1795,13680),(1779,'IDR','TN',6895,12495),(1780,'IDR','LB',6960,20810),(1781,'IDR','IN',6420,28990),(1782,'IDR','PY',6900,22185),(1783,'IDR','UZ',6905,13470),(1784,'IDR','EC',6705,23005),(1785,'IDR','MM',6905,7540),(1786,'IDR','GE',6925,8825),(1787,'ILS','US',35,105),(1788,'ILS','CH',35,90),(1789,'ILS','AU',30,80),(1790,'ILS','GB',25,70),(1791,'ILS','DE',25,70),(1792,'ILS','DK',25,60),(1793,'ILS','AT',20,55),(1794,'ILS','NO',20,60),(1795,'ILS','CA',25,70),(1796,'ILS','NL',25,60),(1797,'ILS','SE',20,55),(1798,'ILS','IE',20,50),(1799,'ILS','BE',20,50),(1800,'ILS','FI',15,40),(1801,'ILS','FR',15,45),(1802,'ILS','NZ',15,50),(1803,'ILS','HK',15,45),(1804,'ILS','CZ',15,35),(1805,'ILS','SK',15,30),(1806,'ILS','AE',15,40),(1807,'ILS','SG',15,50),(1808,'ILS','IL',15,35),(1809,'ILS','KW',5,30),(1810,'ILS','IT',10,25),(1811,'ILS','JP',15,35),(1812,'ILS','ES',10,25),(1813,'ILS','VE',5,20),(1814,'ILS','HU',10,20),(1815,'ILS','PT',10,25),(1816,'ILS','GR',10,20),(1817,'ILS','KR',15,35),(1818,'ILS','TW',10,30),(1819,'ILS','PL',10,25),(1820,'ILS','ZM',5,10),(1821,'ILS','PR',5,30),(1822,'ILS','CI',5,10),(1823,'ILS','RO',10,20),(1824,'ILS','BH',5,20),(1825,'ILS','PA',5,30),(1826,'ILS','GH',5,10),(1827,'ILS','KH',5,10),(1828,'ILS','SN',5,10),(1829,'ILS','SA',5,20),(1830,'ILS','RU',5,15),(1831,'ILS','UG',5,10),(1832,'ILS','BR',5,15),(1833,'ILS','NI',5,10),(1834,'ILS','MG',5,10),(1835,'ILS','DO',5,10),(1836,'ILS','MX',5,15),(1837,'ILS','OM',5,15),(1838,'ILS','CM',5,10),(1839,'ILS','ZA',5,15),(1840,'ILS','CL',5,15),(1841,'ILS','KE',5,10),(1842,'ILS','NP',5,10),(1843,'ILS','PE',5,15),(1844,'ILS','UA',5,10),(1845,'ILS','MZ',5,15),(1846,'ILS','TZ',5,10),(1847,'ILS','AO',5,10),(1848,'ILS','JO',5,10),(1849,'ILS','ZW',5,10),(1850,'ILS','TR',5,10),(1851,'ILS','MU',5,10),(1852,'ILS','SV',5,10),(1853,'ILS','TH',5,15),(1854,'ILS','CO',5,10),(1855,'ILS','LK',5,10),(1856,'ILS','CR',5,10),(1857,'ILS','AR',5,10),(1858,'ILS','MA',5,10),(1859,'ILS','MY',5,15),(1860,'ILS','KZ',5,10),(1861,'ILS','DZ',5,10),(1862,'ILS','ID',5,15),(1863,'ILS','NG',5,15),(1864,'ILS','GT',5,10),(1865,'ILS','VN',5,10),(1866,'ILS','BY',5,10),(1867,'ILS','EG',5,10),(1868,'ILS','UY',5,10),(1869,'ILS','BD',5,10),(1870,'ILS','PK',5,10),(1871,'ILS','PH',5,10),(1872,'ILS','ET',5,10),(1873,'ILS','TN',5,10),(1874,'ILS','LB',5,10),(1875,'ILS','IN',5,10),(1876,'ILS','PY',5,10),(1877,'ILS','UZ',5,10),(1878,'ILS','EC',5,10),(1879,'ILS','MM',5,10),(1880,'ILS','GE',5,10),(1881,'INR','US',865,2435),(1882,'INR','CH',805,2115),(1883,'INR','AU',730,1880),(1884,'INR','GB',640,1635),(1885,'INR','DE',635,1620),(1886,'INR','DK',585,1445),(1887,'INR','AT',425,1320),(1888,'INR','NO',480,1345),(1889,'INR','CA',535,1635),(1890,'INR','NL',570,1445),(1891,'INR','SE',455,1235),(1892,'INR','IE',450,1190),(1893,'INR','BE',415,1215),(1894,'INR','FI',310,945),(1895,'INR','FR',385,1030),(1896,'INR','NZ',390,1150),(1897,'INR','HK',355,1005),(1898,'INR','CZ',340,815),(1899,'INR','SK',320,695),(1900,'INR','AE',300,950),(1901,'INR','SG',395,1165),(1902,'INR','IL',345,840),(1903,'INR','KW',155,755),(1904,'INR','IT',235,620),(1905,'INR','JP',295,835),(1906,'INR','ES',240,635),(1907,'INR','VE',30,485),(1908,'INR','HU',205,470),(1909,'INR','PT',200,530),(1910,'INR','GR',250,510),(1911,'INR','KR',310,815),(1912,'INR','TW',250,670),(1913,'INR','PL',215,530),(1914,'INR','ZM',30,175),(1915,'INR','PR',75,710),(1916,'INR','CI',40,170),(1917,'INR','RO',195,475),(1918,'INR','BH',90,495),(1919,'INR','PA',60,680),(1920,'INR','GH',70,200),(1921,'INR','KH',40,200),(1922,'INR','SN',30,215),(1923,'INR','SA',130,490),(1924,'INR','RU',130,405),(1925,'INR','UG',30,160),(1926,'INR','BR',135,335),(1927,'INR','NI',30,215),(1928,'INR','MG',30,150),(1929,'INR','DO',35,250),(1930,'INR','MX',105,370),(1931,'INR','OM',65,370),(1932,'INR','CM',30,275),(1933,'INR','ZA',120,395),(1934,'INR','CL',125,380),(1935,'INR','KE',35,160),(1936,'INR','NP',30,145),(1937,'INR','PE',75,320),(1938,'INR','UA',70,225),(1939,'INR','MZ',30,300),(1940,'INR','TZ',5,70),(1941,'INR','AO',65,175),(1942,'INR','JO',50,230),(1943,'INR','ZW',30,165),(1944,'INR','TR',80,215),(1945,'INR','MU',40,135),(1946,'INR','SV',30,165),(1947,'INR','TH',115,365),(1948,'INR','CO',60,230),(1949,'INR','LK',30,40),(1950,'INR','CR',35,240),(1951,'INR','AR',80,220),(1952,'INR','MA',35,140),(1953,'INR','MY',100,375),(1954,'INR','KZ',45,160),(1955,'INR','DZ',35,75),(1956,'INR','ID',90,340),(1957,'INR','NG',50,325),(1958,'INR','GT',35,255),(1959,'INR','VN',75,280),(1960,'INR','BY',35,135),(1961,'INR','EG',45,290),(1962,'INR','UY',35,170),(1963,'INR','BD',30,70),(1964,'INR','PK',35,195),(1965,'INR','PH',60,215),(1966,'INR','ET',10,70),(1967,'INR','TN',35,65),(1968,'INR','LB',35,110),(1969,'INR','IN',35,150),(1970,'INR','PY',35,115),(1971,'INR','UZ',35,70),(1972,'INR','EC',35,120),(1973,'INR','MM',35,40),(1974,'INR','GE',35,45),(1975,'JPY','US',1225,3455),(1976,'JPY','CH',1145,3005),(1977,'JPY','AU',1040,2670),(1978,'JPY','GB',905,2320),(1979,'JPY','DE',900,2300),(1980,'JPY','DK',830,2055),(1981,'JPY','AT',605,1875),(1982,'JPY','NO',685,1910),(1983,'JPY','CA',755,2320),(1984,'JPY','NL',810,2055),(1985,'JPY','SE',650,1750),(1986,'JPY','IE',640,1690),(1987,'JPY','BE',590,1730),(1988,'JPY','FI',440,1340),(1989,'JPY','FR',545,1460),(1990,'JPY','NZ',555,1635),(1991,'JPY','HK',505,1430),(1992,'JPY','CZ',480,1155),(1993,'JPY','SK',455,985),(1994,'JPY','AE',430,1345),(1995,'JPY','SG',560,1655),(1996,'JPY','IL',490,1195),(1997,'JPY','KW',220,1075),(1998,'JPY','IT',330,875),(1999,'JPY','JP',415,1185),(2000,'JPY','ES',340,905),(2001,'JPY','VE',45,690),(2002,'JPY','HU',290,670),(2003,'JPY','PT',285,750),(2004,'JPY','GR',355,725),(2005,'JPY','KR',435,1155),(2006,'JPY','TW',355,950),(2007,'JPY','PL',305,750),(2008,'JPY','ZM',45,250),(2009,'JPY','PR',105,1010),(2010,'JPY','CI',60,240),(2011,'JPY','RO',280,675),(2012,'JPY','BH',125,705),(2013,'JPY','PA',85,965),(2014,'JPY','GH',100,285),(2015,'JPY','KH',60,280),(2016,'JPY','SN',45,305),(2017,'JPY','SA',180,700),(2018,'JPY','RU',180,580),(2019,'JPY','UG',45,225),(2020,'JPY','BR',195,475),(2021,'JPY','NI',40,305),(2022,'JPY','MG',45,215),(2023,'JPY','DO',50,360),(2024,'JPY','MX',145,525),(2025,'JPY','OM',90,525),(2026,'JPY','CM',40,395),(2027,'JPY','ZA',175,560),(2028,'JPY','CL',180,540),(2029,'JPY','KE',50,225),(2030,'JPY','NP',40,205),(2031,'JPY','PE',110,455),(2032,'JPY','UA',105,320),(2033,'JPY','MZ',40,425),(2034,'JPY','TZ',5,100),(2035,'JPY','AO',95,245),(2036,'JPY','JO',70,330),(2037,'JPY','ZW',45,235),(2038,'JPY','TR',110,300),(2039,'JPY','MU',55,195),(2040,'JPY','SV',40,235),(2041,'JPY','TH',165,520),(2042,'JPY','CO',85,325),(2043,'JPY','LK',40,55),(2044,'JPY','CR',50,340),(2045,'JPY','AR',115,310),(2046,'JPY','MA',50,200),(2047,'JPY','MY',145,535),(2048,'JPY','KZ',60,225),(2049,'JPY','DZ',50,110),(2050,'JPY','ID',130,480),(2051,'JPY','NG',75,460),(2052,'JPY','GT',50,360),(2053,'JPY','VN',105,400),(2054,'JPY','BY',50,195),(2055,'JPY','EG',65,410),(2056,'JPY','UY',55,245),(2057,'JPY','BD',45,95),(2058,'JPY','PK',50,275),(2059,'JPY','PH',85,305),(2060,'JPY','ET',15,100),(2061,'JPY','TN',50,90),(2062,'JPY','LB',50,155),(2063,'JPY','IN',45,215),(2064,'JPY','PY',50,165),(2065,'JPY','UZ',50,100),(2066,'JPY','EC',50,170),(2067,'JPY','MM',50,55),(2068,'JPY','GE',50,65),(2069,'KRW','US',12955,36545),(2070,'KRW','CH',12080,31785),(2071,'KRW','AU',10990,28220),(2072,'KRW','GB',9580,24520),(2073,'KRW','DE',9510,24325),(2074,'KRW','DK',8750,21715),(2075,'KRW','AT',6385,19840),(2076,'KRW','NO',7235,20205),(2077,'KRW','CA',8000,24530),(2078,'KRW','NL',8560,21720),(2079,'KRW','SE',6850,18525),(2080,'KRW','IE',6780,17870),(2081,'KRW','BE',6235,18270),(2082,'KRW','FI',4660,14155),(2083,'KRW','FR',5770,15445),(2084,'KRW','NZ',5875,17290),(2085,'KRW','HK',5340,15105),(2086,'KRW','CZ',5090,12225),(2087,'KRW','SK',4805,10410),(2088,'KRW','AE',4535,14230),(2089,'KRW','SG',5915,17485),(2090,'KRW','IL',5160,12625),(2091,'KRW','KW',2330,11350),(2092,'KRW','IT',3515,9275),(2093,'KRW','JP',4405,12520),(2094,'KRW','ES',3610,9550),(2095,'KRW','VE',475,7315),(2096,'KRW','HU',3045,7080),(2097,'KRW','PT',3040,7920),(2098,'KRW','GR',3745,7675),(2099,'KRW','KR',4620,12235),(2100,'KRW','TW',3755,10050),(2101,'KRW','PL',3210,7950),(2102,'KRW','ZM',465,2645),(2103,'KRW','PR',1135,10665),(2104,'KRW','CI',620,2560),(2105,'KRW','RO',2950,7140),(2106,'KRW','BH',1340,7430),(2107,'KRW','PA',900,10195),(2108,'KRW','GH',1075,3000),(2109,'KRW','KH',620,2980),(2110,'KRW','SN',450,3235),(2111,'KRW','SA',1925,7375),(2112,'KRW','RU',1915,6110),(2113,'KRW','UG',450,2365),(2114,'KRW','BR',2040,5030),(2115,'KRW','NI',450,3220),(2116,'KRW','MG',455,2285),(2117,'KRW','DO',545,3785),(2118,'KRW','MX',1540,5570),(2119,'KRW','OM',965,5570),(2120,'KRW','CM',450,4150),(2121,'KRW','ZA',1835,5905),(2122,'KRW','CL',1910,5710),(2123,'KRW','KE',550,2385),(2124,'KRW','NP',450,2165),(2125,'KRW','PE',1140,4805),(2126,'KRW','UA',1090,3400),(2127,'KRW','MZ',450,4505),(2128,'KRW','TZ',55,1035),(2129,'KRW','AO',995,2590),(2130,'KRW','JO',735,3480),(2131,'KRW','ZW',450,2470),(2132,'KRW','TR',1165,3195),(2133,'KRW','MU',600,2045),(2134,'KRW','SV',450,2475),(2135,'KRW','TH',1750,5510),(2136,'KRW','CO',890,3440),(2137,'KRW','LK',430,595),(2138,'KRW','CR',540,3595),(2139,'KRW','AR',1210,3275),(2140,'KRW','MA',540,2120),(2141,'KRW','MY',1535,5635),(2142,'KRW','KZ',655,2400),(2143,'KRW','DZ',535,1140),(2144,'KRW','ID',1370,5075),(2145,'KRW','NG',770,4865),(2146,'KRW','GT',540,3810),(2147,'KRW','VN',1120,4240),(2148,'KRW','BY',525,2045),(2149,'KRW','EG',710,4330),(2150,'KRW','UY',560,2575),(2151,'KRW','BD',460,1020),(2152,'KRW','PK',505,2905),(2153,'KRW','PH',875,3225),(2154,'KRW','ET',140,1065),(2155,'KRW','TN',540,975),(2156,'KRW','LB',545,1625),(2157,'KRW','IN',500,2260),(2158,'KRW','PY',540,1730),(2159,'KRW','UZ',540,1050),(2160,'KRW','EC',525,1795),(2161,'KRW','MM',540,590),(2162,'KRW','GE',540,690),(2163,'MAD','US',105,295),(2164,'MAD','CH',100,255),(2165,'MAD','AU',90,230),(2166,'MAD','GB',75,200),(2167,'MAD','DE',75,195),(2168,'MAD','DK',70,175),(2169,'MAD','AT',50,160),(2170,'MAD','NO',60,165),(2171,'MAD','CA',65,200),(2172,'MAD','NL',70,175),(2173,'MAD','SE',55,150),(2174,'MAD','IE',55,145),(2175,'MAD','BE',50,150),(2176,'MAD','FI',40,115),(2177,'MAD','FR',45,125),(2178,'MAD','NZ',45,140),(2179,'MAD','HK',45,120),(2180,'MAD','CZ',40,100),(2181,'MAD','SK',40,85),(2182,'MAD','AE',35,115),(2183,'MAD','SG',50,140),(2184,'MAD','IL',40,100),(2185,'MAD','KW',20,90),(2186,'MAD','IT',30,75),(2187,'MAD','JP',35,100),(2188,'MAD','ES',30,75),(2189,'MAD','VE',5,60),(2190,'MAD','HU',25,55),(2191,'MAD','PT',25,65),(2192,'MAD','GR',30,60),(2193,'MAD','KR',35,100),(2194,'MAD','TW',30,80),(2195,'MAD','PL',25,65),(2196,'MAD','ZM',5,20),(2197,'MAD','PR',10,85),(2198,'MAD','CI',5,20),(2199,'MAD','RO',25,60),(2200,'MAD','BH',10,60),(2201,'MAD','PA',5,80),(2202,'MAD','GH',10,25),(2203,'MAD','KH',5,25),(2204,'MAD','SN',5,25),(2205,'MAD','SA',15,60),(2206,'MAD','RU',15,50),(2207,'MAD','UG',5,20),(2208,'MAD','BR',15,40),(2209,'MAD','NI',5,25),(2210,'MAD','MG',5,20),(2211,'MAD','DO',5,30),(2212,'MAD','MX',10,45),(2213,'MAD','OM',10,45),(2214,'MAD','CM',5,35),(2215,'MAD','ZA',15,50),(2216,'MAD','CL',15,45),(2217,'MAD','KE',5,20),(2218,'MAD','NP',5,15),(2219,'MAD','PE',10,40),(2220,'MAD','UA',10,25),(2221,'MAD','MZ',5,35),(2222,'MAD','TZ',5,10),(2223,'MAD','AO',10,20),(2224,'MAD','JO',5,30),(2225,'MAD','ZW',5,20),(2226,'MAD','TR',10,25),(2227,'MAD','MU',5,15),(2228,'MAD','SV',5,20),(2229,'MAD','TH',15,45),(2230,'MAD','CO',5,30),(2231,'MAD','LK',5,10),(2232,'MAD','CR',5,30),(2233,'MAD','AR',10,25),(2234,'MAD','MA',5,15),(2235,'MAD','MY',10,45),(2236,'MAD','KZ',5,20),(2237,'MAD','DZ',5,10),(2238,'MAD','ID',10,40),(2239,'MAD','NG',5,40),(2240,'MAD','GT',5,30),(2241,'MAD','VN',10,35),(2242,'MAD','BY',5,15),(2243,'MAD','EG',5,35),(2244,'MAD','UY',5,20),(2245,'MAD','BD',5,10),(2246,'MAD','PK',5,25),(2247,'MAD','PH',5,25),(2248,'MAD','ET',5,10),(2249,'MAD','TN',5,10),(2250,'MAD','LB',5,15),(2251,'MAD','IN',5,20),(2252,'MAD','PY',5,15),(2253,'MAD','UZ',5,10),(2254,'MAD','EC',5,15),(2255,'MAD','MM',5,10),(2256,'MAD','GE',5,10),(2257,'MXN','US',235,660),(2258,'MXN','CH',220,575),(2259,'MXN','AU',200,510),(2260,'MXN','GB',175,445),(2261,'MXN','DE',170,440),(2262,'MXN','DK',160,390),(2263,'MXN','AT',115,360),(2264,'MXN','NO',130,365),(2265,'MXN','CA',145,445),(2266,'MXN','NL',155,395),(2267,'MXN','SE',125,335),(2268,'MXN','IE',120,325),(2269,'MXN','BE',115,330),(2270,'MXN','FI',85,255),(2271,'MXN','FR',105,280),(2272,'MXN','NZ',105,310),(2273,'MXN','HK',95,275),(2274,'MXN','CZ',90,220),(2275,'MXN','SK',85,190),(2276,'MXN','AE',80,255),(2277,'MXN','SG',105,315),(2278,'MXN','IL',95,230),(2279,'MXN','KW',40,205),(2280,'MXN','IT',65,170),(2281,'MXN','JP',80,225),(2282,'MXN','ES',65,175),(2283,'MXN','VE',10,130),(2284,'MXN','HU',55,130),(2285,'MXN','PT',55,145),(2286,'MXN','GR',70,140),(2287,'MXN','KR',85,220),(2288,'MXN','TW',70,180),(2289,'MXN','PL',60,145),(2290,'MXN','ZM',10,50),(2291,'MXN','PR',20,195),(2292,'MXN','CI',10,45),(2293,'MXN','RO',55,130),(2294,'MXN','BH',25,135),(2295,'MXN','PA',15,185),(2296,'MXN','GH',20,55),(2297,'MXN','KH',10,55),(2298,'MXN','SN',10,60),(2299,'MXN','SA',35,135),(2300,'MXN','RU',35,110),(2301,'MXN','UG',10,45),(2302,'MXN','BR',35,90),(2303,'MXN','NI',10,60),(2304,'MXN','MG',10,40),(2305,'MXN','DO',10,70),(2306,'MXN','MX',30,100),(2307,'MXN','OM',15,100),(2308,'MXN','CM',10,75),(2309,'MXN','ZA',35,105),(2310,'MXN','CL',35,105),(2311,'MXN','KE',10,45),(2312,'MXN','NP',10,40),(2313,'MXN','PE',20,85),(2314,'MXN','UA',20,60),(2315,'MXN','MZ',10,80),(2316,'MXN','TZ',5,20),(2317,'MXN','AO',20,45),(2318,'MXN','JO',15,65),(2319,'MXN','ZW',10,45),(2320,'MXN','TR',20,60),(2321,'MXN','MU',10,35),(2322,'MXN','SV',10,45),(2323,'MXN','TH',30,100),(2324,'MXN','CO',15,60),(2325,'MXN','LK',10,15),(2326,'MXN','CR',10,65),(2327,'MXN','AR',20,60),(2328,'MXN','MA',10,40),(2329,'MXN','MY',30,100),(2330,'MXN','KZ',10,45),(2331,'MXN','DZ',10,20),(2332,'MXN','ID',25,90),(2333,'MXN','NG',15,90),(2334,'MXN','GT',10,70),(2335,'MXN','VN',20,75),(2336,'MXN','BY',10,35),(2337,'MXN','EG',15,80),(2338,'MXN','UY',10,45),(2339,'MXN','BD',10,20),(2340,'MXN','PK',10,50),(2341,'MXN','PH',15,60),(2342,'MXN','ET',5,20),(2343,'MXN','TN',10,20),(2344,'MXN','LB',10,30),(2345,'MXN','IN',10,40),(2346,'MXN','PY',10,30),(2347,'MXN','UZ',10,20),(2348,'MXN','EC',10,30),(2349,'MXN','MM',10,15),(2350,'MXN','GE',10,15),(2351,'MYR','US',50,135),(2352,'MYR','CH',45,115),(2353,'MYR','AU',40,105),(2354,'MYR','GB',35,90),(2355,'MYR','DE',35,90),(2356,'MYR','DK',30,80),(2357,'MYR','AT',25,75),(2358,'MYR','NO',25,75),(2359,'MYR','CA',30,90),(2360,'MYR','NL',30,80),(2361,'MYR','SE',25,70),(2362,'MYR','IE',25,65),(2363,'MYR','BE',25,65),(2364,'MYR','FI',15,50),(2365,'MYR','FR',20,55),(2366,'MYR','NZ',20,65),(2367,'MYR','HK',20,55),(2368,'MYR','CZ',20,45),(2369,'MYR','SK',20,40),(2370,'MYR','AE',15,50),(2371,'MYR','SG',20,65),(2372,'MYR','IL',20,45),(2373,'MYR','KW',10,40),(2374,'MYR','IT',15,35),(2375,'MYR','JP',15,45),(2376,'MYR','ES',15,35),(2377,'MYR','VE',5,25),(2378,'MYR','HU',10,25),(2379,'MYR','PT',10,30),(2380,'MYR','GR',15,30),(2381,'MYR','KR',15,45),(2382,'MYR','TW',15,35),(2383,'MYR','PL',10,30),(2384,'MYR','ZM',5,10),(2385,'MYR','PR',5,40),(2386,'MYR','CI',5,10),(2387,'MYR','RO',10,25),(2388,'MYR','BH',5,25),(2389,'MYR','PA',5,40),(2390,'MYR','GH',5,10),(2391,'MYR','KH',5,10),(2392,'MYR','SN',5,10),(2393,'MYR','SA',5,25),(2394,'MYR','RU',5,20),(2395,'MYR','UG',5,10),(2396,'MYR','BR',10,20),(2397,'MYR','NI',5,10),(2398,'MYR','MG',5,10),(2399,'MYR','DO',5,15),(2400,'MYR','MX',5,20),(2401,'MYR','OM',5,20),(2402,'MYR','CM',5,15),(2403,'MYR','ZA',5,20),(2404,'MYR','CL',5,20),(2405,'MYR','KE',5,10),(2406,'MYR','NP',5,10),(2407,'MYR','PE',5,20),(2408,'MYR','UA',5,15),(2409,'MYR','MZ',5,15),(2410,'MYR','TZ',5,10),(2411,'MYR','AO',5,10),(2412,'MYR','JO',5,15),(2413,'MYR','ZW',5,10),(2414,'MYR','TR',5,10),(2415,'MYR','MU',5,10),(2416,'MYR','SV',5,10),(2417,'MYR','TH',5,20),(2418,'MYR','CO',5,15),(2419,'MYR','LK',5,10),(2420,'MYR','CR',5,15),(2421,'MYR','AR',5,10),(2422,'MYR','MA',5,10),(2423,'MYR','MY',5,20),(2424,'MYR','KZ',5,10),(2425,'MYR','DZ',5,10),(2426,'MYR','ID',5,20),(2427,'MYR','NG',5,20),(2428,'MYR','GT',5,15),(2429,'MYR','VN',5,15),(2430,'MYR','BY',5,10),(2431,'MYR','EG',5,15),(2432,'MYR','UY',5,10),(2433,'MYR','BD',5,10),(2434,'MYR','PK',5,10),(2435,'MYR','PH',5,10),(2436,'MYR','ET',5,10),(2437,'MYR','TN',5,10),(2438,'MYR','LB',5,10),(2439,'MYR','IN',5,10),(2440,'MYR','PY',5,10),(2441,'MYR','UZ',5,10),(2442,'MYR','EC',5,10),(2443,'MYR','MM',5,10),(2444,'MYR','GE',5,10),(2445,'NGN','US',4490,12665),(2446,'NGN','CH',4185,11015),(2447,'NGN','AU',3810,9780),(2448,'NGN','GB',3320,8495),(2449,'NGN','DE',3295,8430),(2450,'NGN','DK',3030,7525),(2451,'NGN','AT',2210,6875),(2452,'NGN','NO',2505,7000),(2453,'NGN','CA',2770,8500),(2454,'NGN','NL',2965,7525),(2455,'NGN','SE',2375,6420),(2456,'NGN','IE',2350,6190),(2457,'NGN','BE',2160,6330),(2458,'NGN','FI',1615,4905),(2459,'NGN','FR',2000,5350),(2460,'NGN','NZ',2035,5990),(2461,'NGN','HK',1850,5235),(2462,'NGN','CZ',1765,4235),(2463,'NGN','SK',1665,3610),(2464,'NGN','AE',1570,4930),(2465,'NGN','SG',2050,6060),(2466,'NGN','IL',1790,4375),(2467,'NGN','KW',805,3935),(2468,'NGN','IT',1220,3215),(2469,'NGN','JP',1525,4340),(2470,'NGN','ES',1250,3310),(2471,'NGN','VE',165,2535),(2472,'NGN','HU',1055,2455),(2473,'NGN','PT',1055,2745),(2474,'NGN','GR',1300,2660),(2475,'NGN','KR',1600,4240),(2476,'NGN','TW',1300,3485),(2477,'NGN','PL',1115,2755),(2478,'NGN','ZM',160,915),(2479,'NGN','PR',395,3695),(2480,'NGN','CI',215,885),(2481,'NGN','RO',1025,2475),(2482,'NGN','BH',465,2575),(2483,'NGN','PA',310,3535),(2484,'NGN','GH',375,1040),(2485,'NGN','KH',215,1030),(2486,'NGN','SN',155,1120),(2487,'NGN','SA',665,2555),(2488,'NGN','RU',665,2115),(2489,'NGN','UG',155,820),(2490,'NGN','BR',705,1745),(2491,'NGN','NI',155,1115),(2492,'NGN','MG',155,790),(2493,'NGN','DO',190,1310),(2494,'NGN','MX',535,1930),(2495,'NGN','OM',335,1930),(2496,'NGN','CM',155,1440),(2497,'NGN','ZA',635,2045),(2498,'NGN','CL',660,1980),(2499,'NGN','KE',190,825),(2500,'NGN','NP',155,750),(2501,'NGN','PE',395,1665),(2502,'NGN','UA',375,1175),(2503,'NGN','MZ',155,1560),(2504,'NGN','TZ',20,360),(2505,'NGN','AO',345,900),(2506,'NGN','JO',255,1205),(2507,'NGN','ZW',155,855),(2508,'NGN','TR',405,1105),(2509,'NGN','MU',205,710),(2510,'NGN','SV',155,860),(2511,'NGN','TH',605,1910),(2512,'NGN','CO',310,1190),(2513,'NGN','LK',150,205),(2514,'NGN','CR',190,1245),(2515,'NGN','AR',420,1135),(2516,'NGN','MA',185,735),(2517,'NGN','MY',530,1955),(2518,'NGN','KZ',225,830),(2519,'NGN','DZ',185,395),(2520,'NGN','ID',475,1760),(2521,'NGN','NG',265,1685),(2522,'NGN','GT',185,1320),(2523,'NGN','VN',390,1470),(2524,'NGN','BY',180,710),(2525,'NGN','EG',245,1500),(2526,'NGN','UY',195,890),(2527,'NGN','BD',160,355),(2528,'NGN','PK',175,1005),(2529,'NGN','PH',305,1115),(2530,'NGN','ET',50,370),(2531,'NGN','TN',185,340),(2532,'NGN','LB',190,565),(2533,'NGN','IN',175,785),(2534,'NGN','PY',185,600),(2535,'NGN','UZ',185,365),(2536,'NGN','EC',180,620),(2537,'NGN','MM',185,205),(2538,'NGN','GE',185,240),(2539,'NOK','US',100,280),(2540,'NOK','CH',95,245),(2541,'NOK','AU',85,220),(2542,'NOK','GB',75,190),(2543,'NOK','DE',75,190),(2544,'NOK','DK',70,170),(2545,'NOK','AT',50,155),(2546,'NOK','NO',55,155),(2547,'NOK','CA',60,190),(2548,'NOK','NL',65,170),(2549,'NOK','SE',55,145),(2550,'NOK','IE',50,140),(2551,'NOK','BE',50,140),(2552,'NOK','FI',35,110),(2553,'NOK','FR',45,120),(2554,'NOK','NZ',45,135),(2555,'NOK','HK',40,115),(2556,'NOK','CZ',40,95),(2557,'NOK','SK',35,80),(2558,'NOK','AE',35,110),(2559,'NOK','SG',45,135),(2560,'NOK','IL',40,95),(2561,'NOK','KW',20,90),(2562,'NOK','IT',25,70),(2563,'NOK','JP',35,95),(2564,'NOK','ES',30,75),(2565,'NOK','VE',5,55),(2566,'NOK','HU',25,55),(2567,'NOK','PT',25,60),(2568,'NOK','GR',30,60),(2569,'NOK','KR',35,95),(2570,'NOK','TW',30,80),(2571,'NOK','PL',25,60),(2572,'NOK','ZM',5,20),(2573,'NOK','PR',10,80),(2574,'NOK','CI',5,20),(2575,'NOK','RO',25,55),(2576,'NOK','BH',10,55),(2577,'NOK','PA',5,80),(2578,'NOK','GH',10,25),(2579,'NOK','KH',5,25),(2580,'NOK','SN',5,25),(2581,'NOK','SA',15,55),(2582,'NOK','RU',15,45),(2583,'NOK','UG',5,20),(2584,'NOK','BR',15,40),(2585,'NOK','NI',5,25),(2586,'NOK','MG',5,20),(2587,'NOK','DO',5,30),(2588,'NOK','MX',10,45),(2589,'NOK','OM',5,45),(2590,'NOK','CM',5,30),(2591,'NOK','ZA',15,45),(2592,'NOK','CL',15,45),(2593,'NOK','KE',5,20),(2594,'NOK','NP',5,15),(2595,'NOK','PE',10,35),(2596,'NOK','UA',10,25),(2597,'NOK','MZ',5,35),(2598,'NOK','TZ',5,10),(2599,'NOK','AO',10,20),(2600,'NOK','JO',5,25),(2601,'NOK','ZW',5,20),(2602,'NOK','TR',10,25),(2603,'NOK','MU',5,15),(2604,'NOK','SV',5,20),(2605,'NOK','TH',15,45),(2606,'NOK','CO',5,25),(2607,'NOK','LK',5,10),(2608,'NOK','CR',5,30),(2609,'NOK','AR',10,25),(2610,'NOK','MA',5,15),(2611,'NOK','MY',10,45),(2612,'NOK','KZ',5,20),(2613,'NOK','DZ',5,10),(2614,'NOK','ID',10,40),(2615,'NOK','NG',5,40),(2616,'NOK','GT',5,30),(2617,'NOK','VN',10,35),(2618,'NOK','BY',5,15),(2619,'NOK','EG',5,35),(2620,'NOK','UY',5,20),(2621,'NOK','BD',5,10),(2622,'NOK','PK',5,20),(2623,'NOK','PH',5,25),(2624,'NOK','ET',5,10),(2625,'NOK','TN',5,10),(2626,'NOK','LB',5,15),(2627,'NOK','IN',5,15),(2628,'NOK','PY',5,15),(2629,'NOK','UZ',5,10),(2630,'NOK','EC',5,15),(2631,'NOK','MM',5,10),(2632,'NOK','GE',5,10),(2633,'PEN','US',45,120),(2634,'PEN','CH',40,105),(2635,'PEN','AU',35,95),(2636,'PEN','GB',30,80),(2637,'PEN','DE',30,80),(2638,'PEN','DK',30,70),(2639,'PEN','AT',20,65),(2640,'PEN','NO',25,65),(2641,'PEN','CA',25,80),(2642,'PEN','NL',30,70),(2643,'PEN','SE',25,60),(2644,'PEN','IE',20,60),(2645,'PEN','BE',20,60),(2646,'PEN','FI',15,45),(2647,'PEN','FR',20,50),(2648,'PEN','NZ',20,55),(2649,'PEN','HK',20,50),(2650,'PEN','CZ',15,40),(2651,'PEN','SK',15,35),(2652,'PEN','AE',15,45),(2653,'PEN','SG',20,60),(2654,'PEN','IL',15,40),(2655,'PEN','KW',10,35),(2656,'PEN','IT',10,30),(2657,'PEN','JP',15,40),(2658,'PEN','ES',10,30),(2659,'PEN','VE',5,25),(2660,'PEN','HU',10,25),(2661,'PEN','PT',10,25),(2662,'PEN','GR',10,25),(2663,'PEN','KR',15,40),(2664,'PEN','TW',10,35),(2665,'PEN','PL',10,25),(2666,'PEN','ZM',5,10),(2667,'PEN','PR',5,35),(2668,'PEN','CI',5,10),(2669,'PEN','RO',10,25),(2670,'PEN','BH',5,25),(2671,'PEN','PA',5,35),(2672,'PEN','GH',5,10),(2673,'PEN','KH',5,10),(2674,'PEN','SN',5,10),(2675,'PEN','SA',5,25),(2676,'PEN','RU',5,20),(2677,'PEN','UG',5,10),(2678,'PEN','BR',5,15),(2679,'PEN','NI',5,10),(2680,'PEN','MG',5,10),(2681,'PEN','DO',5,10),(2682,'PEN','MX',5,20),(2683,'PEN','OM',5,20),(2684,'PEN','CM',5,15),(2685,'PEN','ZA',5,20),(2686,'PEN','CL',5,20),(2687,'PEN','KE',5,10),(2688,'PEN','NP',5,10),(2689,'PEN','PE',5,15),(2690,'PEN','UA',5,10),(2691,'PEN','MZ',5,15),(2692,'PEN','TZ',5,10),(2693,'PEN','AO',5,10),(2694,'PEN','JO',5,10),(2695,'PEN','ZW',5,10),(2696,'PEN','TR',5,10),(2697,'PEN','MU',5,10),(2698,'PEN','SV',5,10),(2699,'PEN','TH',5,20),(2700,'PEN','CO',5,10),(2701,'PEN','LK',5,10),(2702,'PEN','CR',5,10),(2703,'PEN','AR',5,10),(2704,'PEN','MA',5,10),(2705,'PEN','MY',5,20),(2706,'PEN','KZ',5,10),(2707,'PEN','DZ',5,10),(2708,'PEN','ID',5,15),(2709,'PEN','NG',5,15),(2710,'PEN','GT',5,15),(2711,'PEN','VN',5,15),(2712,'PEN','BY',5,10),(2713,'PEN','EG',5,15),(2714,'PEN','UY',5,10),(2715,'PEN','BD',5,10),(2716,'PEN','PK',5,10),(2717,'PEN','PH',5,10),(2718,'PEN','ET',5,10),(2719,'PEN','TN',5,10),(2720,'PEN','LB',5,10),(2721,'PEN','IN',5,10),(2722,'PEN','PY',5,10),(2723,'PEN','UZ',5,10),(2724,'PEN','EC',5,10),(2725,'PEN','MM',5,10),(2726,'PEN','GE',5,10),(2727,'PHP','US',565,1600),(2728,'PHP','CH',530,1390),(2729,'PHP','AU',480,1235),(2730,'PHP','GB',420,1070),(2731,'PHP','DE',415,1065),(2732,'PHP','DK',380,950),(2733,'PHP','AT',280,865),(2734,'PHP','NO',315,885),(2735,'PHP','CA',350,1070),(2736,'PHP','NL',375,950),(2737,'PHP','SE',300,810),(2738,'PHP','IE',295,780),(2739,'PHP','BE',275,800),(2740,'PHP','FI',205,620),(2741,'PHP','FR',250,675),(2742,'PHP','NZ',255,755),(2743,'PHP','HK',235,660),(2744,'PHP','CZ',225,535),(2745,'PHP','SK',210,455),(2746,'PHP','AE',200,620),(2747,'PHP','SG',260,765),(2748,'PHP','IL',225,550),(2749,'PHP','KW',100,495),(2750,'PHP','IT',155,405),(2751,'PHP','JP',195,545),(2752,'PHP','ES',160,420),(2753,'PHP','VE',20,320),(2754,'PHP','HU',135,310),(2755,'PHP','PT',135,345),(2756,'PHP','GR',165,335),(2757,'PHP','KR',200,535),(2758,'PHP','TW',165,440),(2759,'PHP','PL',140,350),(2760,'PHP','ZM',20,115),(2761,'PHP','PR',50,465),(2762,'PHP','CI',25,110),(2763,'PHP','RO',130,310),(2764,'PHP','BH',60,325),(2765,'PHP','PA',40,445),(2766,'PHP','GH',45,130),(2767,'PHP','KH',25,130),(2768,'PHP','SN',20,140),(2769,'PHP','SA',85,320),(2770,'PHP','RU',85,265),(2771,'PHP','UG',20,105),(2772,'PHP','BR',90,220),(2773,'PHP','NI',20,140),(2774,'PHP','MG',20,100),(2775,'PHP','DO',25,165),(2776,'PHP','MX',65,245),(2777,'PHP','OM',40,245),(2778,'PHP','CM',20,180),(2779,'PHP','ZA',80,260),(2780,'PHP','CL',85,250),(2781,'PHP','KE',25,105),(2782,'PHP','NP',20,95),(2783,'PHP','PE',50,210),(2784,'PHP','UA',50,150),(2785,'PHP','MZ',20,195),(2786,'PHP','TZ',5,45),(2787,'PHP','AO',45,115),(2788,'PHP','JO',30,150),(2789,'PHP','ZW',20,110),(2790,'PHP','TR',50,140),(2791,'PHP','MU',25,90),(2792,'PHP','SV',20,110),(2793,'PHP','TH',75,240),(2794,'PHP','CO',40,150),(2795,'PHP','LK',20,25),(2796,'PHP','CR',25,155),(2797,'PHP','AR',55,145),(2798,'PHP','MA',25,95),(2799,'PHP','MY',65,245),(2800,'PHP','KZ',30,105),(2801,'PHP','DZ',25,50),(2802,'PHP','ID',60,220),(2803,'PHP','NG',35,215),(2804,'PHP','GT',25,165),(2805,'PHP','VN',50,185),(2806,'PHP','BY',25,90),(2807,'PHP','EG',30,190),(2808,'PHP','UY',25,115),(2809,'PHP','BD',20,45),(2810,'PHP','PK',20,125),(2811,'PHP','PH',40,140),(2812,'PHP','ET',5,45),(2813,'PHP','TN',25,45),(2814,'PHP','LB',25,70),(2815,'PHP','IN',20,100),(2816,'PHP','PY',25,75),(2817,'PHP','UZ',25,45),(2818,'PHP','EC',25,80),(2819,'PHP','MM',25,30),(2820,'PHP','GE',25,30),(2821,'PKR','US',1895,5340),(2822,'PKR','CH',1765,4645),(2823,'PKR','AU',1605,4125),(2824,'PKR','GB',1400,3585),(2825,'PKR','DE',1390,3555),(2826,'PKR','DK',1280,3175),(2827,'PKR','AT',935,2900),(2828,'PKR','NO',1055,2955),(2829,'PKR','CA',1170,3585),(2830,'PKR','NL',1250,3175),(2831,'PKR','SE',1000,2705),(2832,'PKR','IE',990,2610),(2833,'PKR','BE',910,2670),(2834,'PKR','FI',680,2070),(2835,'PKR','FR',845,2255),(2836,'PKR','NZ',860,2525),(2837,'PKR','HK',780,2205),(2838,'PKR','CZ',745,1785),(2839,'PKR','SK',700,1520),(2840,'PKR','AE',665,2080),(2841,'PKR','SG',865,2555),(2842,'PKR','IL',755,1845),(2843,'PKR','KW',340,1660),(2844,'PKR','IT',515,1355),(2845,'PKR','JP',645,1830),(2846,'PKR','ES',530,1395),(2847,'PKR','VE',70,1070),(2848,'PKR','HU',445,1035),(2849,'PKR','PT',445,1160),(2850,'PKR','GR',550,1120),(2851,'PKR','KR',675,1790),(2852,'PKR','TW',550,1470),(2853,'PKR','PL',470,1160),(2854,'PKR','ZM',70,385),(2855,'PKR','PR',165,1560),(2856,'PKR','CI',90,375),(2857,'PKR','RO',430,1045),(2858,'PKR','BH',195,1085),(2859,'PKR','PA',130,1490),(2860,'PKR','GH',155,440),(2861,'PKR','KH',90,435),(2862,'PKR','SN',65,475),(2863,'PKR','SA',280,1080),(2864,'PKR','RU',280,895),(2865,'PKR','UG',65,345),(2866,'PKR','BR',300,735),(2867,'PKR','NI',65,470),(2868,'PKR','MG',65,335),(2869,'PKR','DO',80,555),(2870,'PKR','MX',225,815),(2871,'PKR','OM',140,815),(2872,'PKR','CM',65,605),(2873,'PKR','ZA',270,865),(2874,'PKR','CL',280,835),(2875,'PKR','KE',80,350),(2876,'PKR','NP',65,315),(2877,'PKR','PE',165,700),(2878,'PKR','UA',160,495),(2879,'PKR','MZ',65,660),(2880,'PKR','TZ',10,150),(2881,'PKR','AO',145,380),(2882,'PKR','JO',105,510),(2883,'PKR','ZW',65,360),(2884,'PKR','TR',170,465),(2885,'PKR','MU',85,300),(2886,'PKR','SV',65,360),(2887,'PKR','TH',255,805),(2888,'PKR','CO',130,500),(2889,'PKR','LK',65,85),(2890,'PKR','CR',80,525),(2891,'PKR','AR',175,480),(2892,'PKR','MA',80,310),(2893,'PKR','MY',225,825),(2894,'PKR','KZ',95,350),(2895,'PKR','DZ',80,165),(2896,'PKR','ID',200,740),(2897,'PKR','NG',110,710),(2898,'PKR','GT',80,555),(2899,'PKR','VN',165,620),(2900,'PKR','BY',75,300),(2901,'PKR','EG',105,635),(2902,'PKR','UY',80,375),(2903,'PKR','BD',65,150),(2904,'PKR','PK',75,425),(2905,'PKR','PH',130,470),(2906,'PKR','ET',20,155),(2907,'PKR','TN',80,140),(2908,'PKR','LB',80,235),(2909,'PKR','IN',75,330),(2910,'PKR','PY',80,255),(2911,'PKR','UZ',80,155),(2912,'PKR','EC',75,260),(2913,'PKR','MM',80,85),(2914,'PKR','GE',80,100),(2915,'PLN','US',45,125),(2916,'PLN','CH',40,110),(2917,'PLN','AU',35,95),(2918,'PLN','GB',35,85),(2919,'PLN','DE',30,85),(2920,'PLN','DK',30,75),(2921,'PLN','AT',20,65),(2922,'PLN','NO',25,70),(2923,'PLN','CA',25,85),(2924,'PLN','NL',30,75),(2925,'PLN','SE',25,65),(2926,'PLN','IE',25,60),(2927,'PLN','BE',20,60),(2928,'PLN','FI',15,50),(2929,'PLN','FR',20,55),(2930,'PLN','NZ',20,60),(2931,'PLN','HK',20,50),(2932,'PLN','CZ',15,40),(2933,'PLN','SK',15,35),(2934,'PLN','AE',15,50),(2935,'PLN','SG',20,60),(2936,'PLN','IL',20,45),(2937,'PLN','KW',10,40),(2938,'PLN','IT',10,30),(2939,'PLN','JP',15,45),(2940,'PLN','ES',10,30),(2941,'PLN','VE',5,25),(2942,'PLN','HU',10,25),(2943,'PLN','PT',10,25),(2944,'PLN','GR',15,25),(2945,'PLN','KR',15,40),(2946,'PLN','TW',15,35),(2947,'PLN','PL',10,25),(2948,'PLN','ZM',5,10),(2949,'PLN','PR',5,35),(2950,'PLN','CI',5,10),(2951,'PLN','RO',10,25),(2952,'PLN','BH',5,25),(2953,'PLN','PA',5,35),(2954,'PLN','GH',5,10),(2955,'PLN','KH',5,10),(2956,'PLN','SN',5,10),(2957,'PLN','SA',5,25),(2958,'PLN','RU',5,20),(2959,'PLN','UG',5,10),(2960,'PLN','BR',5,15),(2961,'PLN','NI',5,10),(2962,'PLN','MG',5,10),(2963,'PLN','DO',5,15),(2964,'PLN','MX',5,20),(2965,'PLN','OM',5,20),(2966,'PLN','CM',5,15),(2967,'PLN','ZA',5,20),(2968,'PLN','CL',5,20),(2969,'PLN','KE',5,10),(2970,'PLN','NP',5,10),(2971,'PLN','PE',5,15),(2972,'PLN','UA',5,10),(2973,'PLN','MZ',5,15),(2974,'PLN','TZ',5,10),(2975,'PLN','AO',5,10),(2976,'PLN','JO',5,10),(2977,'PLN','ZW',5,10),(2978,'PLN','TR',5,10),(2979,'PLN','MU',5,10),(2980,'PLN','SV',5,10),(2981,'PLN','TH',5,20),(2982,'PLN','CO',5,10),(2983,'PLN','LK',5,10),(2984,'PLN','CR',5,10),(2985,'PLN','AR',5,10),(2986,'PLN','MA',5,10),(2987,'PLN','MY',5,20),(2988,'PLN','KZ',5,10),(2989,'PLN','DZ',5,10),(2990,'PLN','ID',5,15),(2991,'PLN','NG',5,15),(2992,'PLN','GT',5,15),(2993,'PLN','VN',5,15),(2994,'PLN','BY',5,10),(2995,'PLN','EG',5,15),(2996,'PLN','UY',5,10),(2997,'PLN','BD',5,10),(2998,'PLN','PK',5,10),(2999,'PLN','PH',5,10),(3000,'PLN','ET',5,10),(3001,'PLN','TN',5,10),(3002,'PLN','LB',5,10),(3003,'PLN','IN',5,10),(3004,'PLN','PY',5,10),(3005,'PLN','UZ',5,10),(3006,'PLN','EC',5,10),(3007,'PLN','MM',5,10),(3008,'PLN','GE',5,10),(3009,'RON','US',45,135),(3010,'RON','CH',45,115),(3011,'RON','AU',40,105),(3012,'RON','GB',35,90),(3013,'RON','DE',35,90),(3014,'RON','DK',30,80),(3015,'RON','AT',25,70),(3016,'RON','NO',25,75),(3017,'RON','CA',30,90),(3018,'RON','NL',30,80),(3019,'RON','SE',25,70),(3020,'RON','IE',25,65),(3021,'RON','BE',25,65),(3022,'RON','FI',15,50),(3023,'RON','FR',20,55),(3024,'RON','NZ',20,65),(3025,'RON','HK',20,55),(3026,'RON','CZ',20,45),(3027,'RON','SK',20,40),(3028,'RON','AE',15,50),(3029,'RON','SG',20,65),(3030,'RON','IL',20,45),(3031,'RON','KW',10,40),(3032,'RON','IT',15,35),(3033,'RON','JP',15,45),(3034,'RON','ES',15,35),(3035,'RON','VE',5,25),(3036,'RON','HU',10,25),(3037,'RON','PT',10,30),(3038,'RON','GR',15,30),(3039,'RON','KR',15,45),(3040,'RON','TW',15,35),(3041,'RON','PL',10,30),(3042,'RON','ZM',5,10),(3043,'RON','PR',5,40),(3044,'RON','CI',5,10),(3045,'RON','RO',10,25),(3046,'RON','BH',5,25),(3047,'RON','PA',5,35),(3048,'RON','GH',5,10),(3049,'RON','KH',5,10),(3050,'RON','SN',5,10),(3051,'RON','SA',5,25),(3052,'RON','RU',5,20),(3053,'RON','UG',5,10),(3054,'RON','BR',5,20),(3055,'RON','NI',5,10),(3056,'RON','MG',5,10),(3057,'RON','DO',5,15),(3058,'RON','MX',5,20),(3059,'RON','OM',5,20),(3060,'RON','CM',5,15),(3061,'RON','ZA',5,20),(3062,'RON','CL',5,20),(3063,'RON','KE',5,10),(3064,'RON','NP',5,10),(3065,'RON','PE',5,20),(3066,'RON','UA',5,10),(3067,'RON','MZ',5,15),(3068,'RON','TZ',5,10),(3069,'RON','AO',5,10),(3070,'RON','JO',5,15),(3071,'RON','ZW',5,10),(3072,'RON','TR',5,10),(3073,'RON','MU',5,10),(3074,'RON','SV',5,10),(3075,'RON','TH',5,20),(3076,'RON','CO',5,15),(3077,'RON','LK',5,10),(3078,'RON','CR',5,15),(3079,'RON','AR',5,10),(3080,'RON','MA',5,10),(3081,'RON','MY',5,20),(3082,'RON','KZ',5,10),(3083,'RON','DZ',5,10),(3084,'RON','ID',5,20),(3085,'RON','NG',5,20),(3086,'RON','GT',5,15),(3087,'RON','VN',5,15),(3088,'RON','BY',5,10),(3089,'RON','EG',5,15),(3090,'RON','UY',5,10),(3091,'RON','BD',5,10),(3092,'RON','PK',5,10),(3093,'RON','PH',5,10),(3094,'RON','ET',5,10),(3095,'RON','TN',5,10),(3096,'RON','LB',5,10),(3097,'RON','IN',5,10),(3098,'RON','PY',5,10),(3099,'RON','UZ',5,10),(3100,'RON','EC',5,10),(3101,'RON','MM',5,10),(3102,'RON','GE',5,10),(3103,'RSD','US',1140,3220),(3104,'RSD','CH',1065,2800),(3105,'RSD','AU',970,2485),(3106,'RSD','GB',845,2160),(3107,'RSD','DE',840,2145),(3108,'RSD','DK',770,1915),(3109,'RSD','AT',560,1750),(3110,'RSD','NO',635,1780),(3111,'RSD','CA',705,2160),(3112,'RSD','NL',755,1915),(3113,'RSD','SE',605,1630),(3114,'RSD','IE',595,1575),(3115,'RSD','BE',550,1610),(3116,'RSD','FI',410,1245),(3117,'RSD','FR',510,1360),(3118,'RSD','NZ',515,1525),(3119,'RSD','HK',470,1330),(3120,'RSD','CZ',450,1075),(3121,'RSD','SK',425,915),(3122,'RSD','AE',400,1255),(3123,'RSD','SG',520,1540),(3124,'RSD','IL',455,1110),(3125,'RSD','KW',205,1000),(3126,'RSD','IT',310,815),(3127,'RSD','JP',390,1105),(3128,'RSD','ES',320,840),(3129,'RSD','VE',40,645),(3130,'RSD','HU',270,625),(3131,'RSD','PT',270,700),(3132,'RSD','GR',330,675),(3133,'RSD','KR',405,1075),(3134,'RSD','TW',330,885),(3135,'RSD','PL',285,700),(3136,'RSD','ZM',40,235),(3137,'RSD','PR',100,940),(3138,'RSD','CI',55,225),(3139,'RSD','RO',260,630),(3140,'RSD','BH',120,655),(3141,'RSD','PA',80,900),(3142,'RSD','GH',95,265),(3143,'RSD','KH',55,260),(3144,'RSD','SN',40,285),(3145,'RSD','SA',170,650),(3146,'RSD','RU',170,540),(3147,'RSD','UG',40,210),(3148,'RSD','BR',180,445),(3149,'RSD','NI',40,285),(3150,'RSD','MG',40,200),(3151,'RSD','DO',50,335),(3152,'RSD','MX',135,490),(3153,'RSD','OM',85,490),(3154,'RSD','CM',40,365),(3155,'RSD','ZA',160,520),(3156,'RSD','CL',170,505),(3157,'RSD','KE',50,210),(3158,'RSD','NP',40,190),(3159,'RSD','PE',100,425),(3160,'RSD','UA',95,300),(3161,'RSD','MZ',40,395),(3162,'RSD','TZ',5,90),(3163,'RSD','AO',90,230),(3164,'RSD','JO',65,305),(3165,'RSD','ZW',40,220),(3166,'RSD','TR',105,280),(3167,'RSD','MU',55,180),(3168,'RSD','SV',40,220),(3169,'RSD','TH',155,485),(3170,'RSD','CO',80,305),(3171,'RSD','LK',40,50),(3172,'RSD','CR',50,315),(3173,'RSD','AR',105,290),(3174,'RSD','MA',50,185),(3175,'RSD','MY',135,495),(3176,'RSD','KZ',60,210),(3177,'RSD','DZ',45,100),(3178,'RSD','ID',120,445),(3179,'RSD','NG',70,430),(3180,'RSD','GT',45,335),(3181,'RSD','VN',100,375),(3182,'RSD','BY',45,180),(3183,'RSD','EG',60,380),(3184,'RSD','UY',50,225),(3185,'RSD','BD',40,90),(3186,'RSD','PK',45,255),(3187,'RSD','PH',75,285),(3188,'RSD','ET',10,95),(3189,'RSD','TN',45,85),(3190,'RSD','LB',50,145),(3191,'RSD','IN',45,200),(3192,'RSD','PY',45,150),(3193,'RSD','UZ',45,95),(3194,'RSD','EC',45,160),(3195,'RSD','MM',45,50),(3196,'RSD','GE',50,60),(3197,'RUB','US',870,2455),(3198,'RUB','CH',810,2135),(3199,'RUB','AU',740,1895),(3200,'RUB','GB',645,1650),(3201,'RUB','DE',640,1635),(3202,'RUB','DK',590,1460),(3203,'RUB','AT',430,1335),(3204,'RUB','NO',485,1360),(3205,'RUB','CA',540,1650),(3206,'RUB','NL',575,1460),(3207,'RUB','SE',460,1245),(3208,'RUB','IE',455,1200),(3209,'RUB','BE',420,1230),(3210,'RUB','FI',315,950),(3211,'RUB','FR',390,1040),(3212,'RUB','NZ',395,1160),(3213,'RUB','HK',360,1015),(3214,'RUB','CZ',340,820),(3215,'RUB','SK',325,700),(3216,'RUB','AE',305,955),(3217,'RUB','SG',400,1175),(3218,'RUB','IL',345,850),(3219,'RUB','KW',155,765),(3220,'RUB','IT',235,625),(3221,'RUB','JP',295,840),(3222,'RUB','ES',245,640),(3223,'RUB','VE',30,490),(3224,'RUB','HU',205,475),(3225,'RUB','PT',205,530),(3226,'RUB','GR',250,515),(3227,'RUB','KR',310,820),(3228,'RUB','TW',250,675),(3229,'RUB','PL',215,535),(3230,'RUB','ZM',30,180),(3231,'RUB','PR',75,715),(3232,'RUB','CI',40,170),(3233,'RUB','RO',200,480),(3234,'RUB','BH',90,500),(3235,'RUB','PA',60,685),(3236,'RUB','GH',70,200),(3237,'RUB','KH',40,200),(3238,'RUB','SN',30,220),(3239,'RUB','SA',130,495),(3240,'RUB','RU',130,410),(3241,'RUB','UG',30,160),(3242,'RUB','BR',135,340),(3243,'RUB','NI',30,215),(3244,'RUB','MG',30,155),(3245,'RUB','DO',35,255),(3246,'RUB','MX',105,375),(3247,'RUB','OM',65,375),(3248,'RUB','CM',30,280),(3249,'RUB','ZA',125,395),(3250,'RUB','CL',130,385),(3251,'RUB','KE',35,160),(3252,'RUB','NP',30,145),(3253,'RUB','PE',75,325),(3254,'RUB','UA',75,230),(3255,'RUB','MZ',30,305),(3256,'RUB','TZ',5,70),(3257,'RUB','AO',65,175),(3258,'RUB','JO',50,235),(3259,'RUB','ZW',30,165),(3260,'RUB','TR',80,215),(3261,'RUB','MU',40,135),(3262,'RUB','SV',30,165),(3263,'RUB','TH',120,370),(3264,'RUB','CO',60,230),(3265,'RUB','LK',30,40),(3266,'RUB','CR',35,240),(3267,'RUB','AR',80,220),(3268,'RUB','MA',35,145),(3269,'RUB','MY',105,380),(3270,'RUB','KZ',45,160),(3271,'RUB','DZ',35,75),(3272,'RUB','ID',90,340),(3273,'RUB','NG',50,325),(3274,'RUB','GT',35,255),(3275,'RUB','VN',75,285),(3276,'RUB','BY',35,140),(3277,'RUB','EG',50,290),(3278,'RUB','UY',40,175),(3279,'RUB','BD',30,70),(3280,'RUB','PK',35,195),(3281,'RUB','PH',60,215),(3282,'RUB','ET',10,70),(3283,'RUB','TN',35,65),(3284,'RUB','LB',35,110),(3285,'RUB','IN',35,150),(3286,'RUB','PY',35,115),(3287,'RUB','UZ',35,70),(3288,'RUB','EC',35,120),(3289,'RUB','MM',35,40),(3290,'RUB','GE',35,45),(3291,'SAR','US',45,125),(3292,'SAR','CH',40,110),(3293,'SAR','AU',40,95),(3294,'SAR','GB',35,85),(3295,'SAR','DE',30,85),(3296,'SAR','DK',30,75),(3297,'SAR','AT',20,70),(3298,'SAR','NO',25,70),(3299,'SAR','CA',25,85),(3300,'SAR','NL',30,75),(3301,'SAR','SE',25,65),(3302,'SAR','IE',25,60),(3303,'SAR','BE',20,60),(3304,'SAR','FI',15,50),(3305,'SAR','FR',20,55),(3306,'SAR','NZ',20,60),(3307,'SAR','HK',20,50),(3308,'SAR','CZ',15,40),(3309,'SAR','SK',15,35),(3310,'SAR','AE',15,50),(3311,'SAR','SG',20,60),(3312,'SAR','IL',20,45),(3313,'SAR','KW',10,40),(3314,'SAR','IT',10,30),(3315,'SAR','JP',15,45),(3316,'SAR','ES',10,35),(3317,'SAR','VE',5,25),(3318,'SAR','HU',10,25),(3319,'SAR','PT',10,25),(3320,'SAR','GR',15,25),(3321,'SAR','KR',15,40),(3322,'SAR','TW',15,35),(3323,'SAR','PL',10,25),(3324,'SAR','ZM',5,10),(3325,'SAR','PR',5,35),(3326,'SAR','CI',5,10),(3327,'SAR','RO',10,25),(3328,'SAR','BH',5,25),(3329,'SAR','PA',5,35),(3330,'SAR','GH',5,10),(3331,'SAR','KH',5,10),(3332,'SAR','SN',5,10),(3333,'SAR','SA',5,25),(3334,'SAR','RU',5,20),(3335,'SAR','UG',5,10),(3336,'SAR','BR',5,15),(3337,'SAR','NI',5,10),(3338,'SAR','MG',5,10),(3339,'SAR','DO',5,15),(3340,'SAR','MX',5,20),(3341,'SAR','OM',5,20),(3342,'SAR','CM',5,15),(3343,'SAR','ZA',5,20),(3344,'SAR','CL',5,20),(3345,'SAR','KE',5,10),(3346,'SAR','NP',5,10),(3347,'SAR','PE',5,15),(3348,'SAR','UA',5,10),(3349,'SAR','MZ',5,15),(3350,'SAR','TZ',5,10),(3351,'SAR','AO',5,10),(3352,'SAR','JO',5,10),(3353,'SAR','ZW',5,10),(3354,'SAR','TR',5,10),(3355,'SAR','MU',5,10),(3356,'SAR','SV',5,10),(3357,'SAR','TH',5,20),(3358,'SAR','CO',5,10),(3359,'SAR','LK',5,10),(3360,'SAR','CR',5,10),(3361,'SAR','AR',5,10),(3362,'SAR','MA',5,10),(3363,'SAR','MY',5,20),(3364,'SAR','KZ',5,10),(3365,'SAR','DZ',5,10),(3366,'SAR','ID',5,15),(3367,'SAR','NG',5,15),(3368,'SAR','GT',5,15),(3369,'SAR','VN',5,15),(3370,'SAR','BY',5,10),(3371,'SAR','EG',5,15),(3372,'SAR','UY',5,10),(3373,'SAR','BD',5,10),(3374,'SAR','PK',5,10),(3375,'SAR','PH',5,10),(3376,'SAR','ET',5,10),(3377,'SAR','TN',5,10),(3378,'SAR','LB',5,10),(3379,'SAR','IN',5,10),(3380,'SAR','PY',5,10),(3381,'SAR','UZ',5,10),(3382,'SAR','EC',5,10),(3383,'SAR','MM',5,10),(3384,'SAR','GE',5,10),(3385,'SEK','US',100,280),(3386,'SEK','CH',90,240),(3387,'SEK','AU',85,215),(3388,'SEK','GB',75,185),(3389,'SEK','DE',70,185),(3390,'SEK','DK',65,165),(3391,'SEK','AT',50,150),(3392,'SEK','NO',55,155),(3393,'SEK','CA',60,185),(3394,'SEK','NL',65,165),(3395,'SEK','SE',50,140),(3396,'SEK','IE',50,135),(3397,'SEK','BE',45,140),(3398,'SEK','FI',35,110),(3399,'SEK','FR',45,115),(3400,'SEK','NZ',45,130),(3401,'SEK','HK',40,115),(3402,'SEK','CZ',40,95),(3403,'SEK','SK',35,80),(3404,'SEK','AE',35,110),(3405,'SEK','SG',45,135),(3406,'SEK','IL',40,95),(3407,'SEK','KW',20,85),(3408,'SEK','IT',25,70),(3409,'SEK','JP',35,95),(3410,'SEK','ES',25,75),(3411,'SEK','VE',5,55),(3412,'SEK','HU',25,55),(3413,'SEK','PT',25,60),(3414,'SEK','GR',30,60),(3415,'SEK','KR',35,95),(3416,'SEK','TW',30,75),(3417,'SEK','PL',25,60),(3418,'SEK','ZM',5,20),(3419,'SEK','PR',10,80),(3420,'SEK','CI',5,20),(3421,'SEK','RO',20,55),(3422,'SEK','BH',10,55),(3423,'SEK','PA',5,80),(3424,'SEK','GH',10,25),(3425,'SEK','KH',5,25),(3426,'SEK','SN',5,25),(3427,'SEK','SA',15,55),(3428,'SEK','RU',15,45),(3429,'SEK','UG',5,20),(3430,'SEK','BR',15,40),(3431,'SEK','NI',5,25),(3432,'SEK','MG',5,15),(3433,'SEK','DO',5,30),(3434,'SEK','MX',10,40),(3435,'SEK','OM',5,40),(3436,'SEK','CM',5,30),(3437,'SEK','ZA',15,45),(3438,'SEK','CL',15,45),(3439,'SEK','KE',5,20),(3440,'SEK','NP',5,15),(3441,'SEK','PE',10,35),(3442,'SEK','UA',10,25),(3443,'SEK','MZ',5,35),(3444,'SEK','TZ',5,10),(3445,'SEK','AO',10,20),(3446,'SEK','JO',5,25),(3447,'SEK','ZW',5,20),(3448,'SEK','TR',10,25),(3449,'SEK','MU',5,15),(3450,'SEK','SV',5,20),(3451,'SEK','TH',15,40),(3452,'SEK','CO',5,25),(3453,'SEK','LK',5,10),(3454,'SEK','CR',5,25),(3455,'SEK','AR',10,25),(3456,'SEK','MA',5,15),(3457,'SEK','MY',10,45),(3458,'SEK','KZ',5,20),(3459,'SEK','DZ',5,10),(3460,'SEK','ID',10,40),(3461,'SEK','NG',5,35),(3462,'SEK','GT',5,30),(3463,'SEK','VN',10,30),(3464,'SEK','BY',5,15),(3465,'SEK','EG',5,35),(3466,'SEK','UY',5,20),(3467,'SEK','BD',5,10),(3468,'SEK','PK',5,20),(3469,'SEK','PH',5,25),(3470,'SEK','ET',5,10),(3471,'SEK','TN',5,10),(3472,'SEK','LB',5,10),(3473,'SEK','IN',5,15),(3474,'SEK','PY',5,15),(3475,'SEK','UZ',5,10),(3476,'SEK','EC',5,15),(3477,'SEK','MM',5,10),(3478,'SEK','GE',5,10),(3479,'SGD','US',15,45),(3480,'SGD','CH',15,40),(3481,'SGD','AU',15,35),(3482,'SGD','GB',10,30),(3483,'SGD','DE',10,30),(3484,'SGD','DK',10,25),(3485,'SGD','AT',10,25),(3486,'SGD','NO',10,25),(3487,'SGD','CA',10,30),(3488,'SGD','NL',10,25),(3489,'SGD','SE',10,20),(3490,'SGD','IE',10,20),(3491,'SGD','BE',10,20),(3492,'SGD','FI',5,15),(3493,'SGD','FR',5,20),(3494,'SGD','NZ',5,20),(3495,'SGD','HK',5,20),(3496,'SGD','CZ',5,15),(3497,'SGD','SK',5,15),(3498,'SGD','AE',5,15),(3499,'SGD','SG',5,20),(3500,'SGD','IL',5,15),(3501,'SGD','KW',5,15),(3502,'SGD','IT',5,10),(3503,'SGD','JP',5,15),(3504,'SGD','ES',5,10),(3505,'SGD','VE',5,10),(3506,'SGD','HU',5,10),(3507,'SGD','PT',5,10),(3508,'SGD','GR',5,10),(3509,'SGD','KR',5,15),(3510,'SGD','TW',5,10),(3511,'SGD','PL',5,10),(3512,'SGD','ZM',5,10),(3513,'SGD','PR',5,15),(3514,'SGD','CI',5,10),(3515,'SGD','RO',5,10),(3516,'SGD','BH',5,10),(3517,'SGD','PA',5,10),(3518,'SGD','GH',5,10),(3519,'SGD','KH',5,10),(3520,'SGD','SN',5,10),(3521,'SGD','SA',5,10),(3522,'SGD','RU',5,10),(3523,'SGD','UG',5,10),(3524,'SGD','BR',5,10),(3525,'SGD','NI',5,10),(3526,'SGD','MG',5,10),(3527,'SGD','DO',5,10),(3528,'SGD','MX',5,10),(3529,'SGD','OM',5,10),(3530,'SGD','CM',5,10),(3531,'SGD','ZA',5,10),(3532,'SGD','CL',5,10),(3533,'SGD','KE',5,10),(3534,'SGD','NP',5,10),(3535,'SGD','PE',5,10),(3536,'SGD','UA',5,10),(3537,'SGD','MZ',5,10),(3538,'SGD','TZ',5,10),(3539,'SGD','AO',5,10),(3540,'SGD','JO',5,10),(3541,'SGD','ZW',5,10),(3542,'SGD','TR',5,10),(3543,'SGD','MU',5,10),(3544,'SGD','SV',5,10),(3545,'SGD','TH',5,10),(3546,'SGD','CO',5,10),(3547,'SGD','LK',5,10),(3548,'SGD','CR',5,10),(3549,'SGD','AR',5,10),(3550,'SGD','MA',5,10),(3551,'SGD','MY',5,10),(3552,'SGD','KZ',5,10),(3553,'SGD','DZ',5,10),(3554,'SGD','ID',5,10),(3555,'SGD','NG',5,10),(3556,'SGD','GT',5,10),(3557,'SGD','VN',5,10),(3558,'SGD','BY',5,10),(3559,'SGD','EG',5,10),(3560,'SGD','UY',5,10),(3561,'SGD','BD',5,10),(3562,'SGD','PK',5,10),(3563,'SGD','PH',5,10),(3564,'SGD','ET',5,10),(3565,'SGD','TN',5,10),(3566,'SGD','LB',5,10),(3567,'SGD','IN',5,10),(3568,'SGD','PY',5,10),(3569,'SGD','UZ',5,10),(3570,'SGD','EC',5,10),(3571,'SGD','MM',5,10),(3572,'SGD','GE',5,10),(3573,'THB','US',355,1000),(3574,'THB','CH',330,870),(3575,'THB','AU',300,770),(3576,'THB','GB',260,670),(3577,'THB','DE',260,665),(3578,'THB','DK',240,595),(3579,'THB','AT',175,545),(3580,'THB','NO',200,550),(3581,'THB','CA',220,670),(3582,'THB','NL',235,595),(3583,'THB','SE',185,505),(3584,'THB','IE',185,490),(3585,'THB','BE',170,500),(3586,'THB','FI',125,385),(3587,'THB','FR',160,420),(3588,'THB','NZ',160,475),(3589,'THB','HK',145,415),(3590,'THB','CZ',140,335),(3591,'THB','SK',130,285),(3592,'THB','AE',125,390),(3593,'THB','SG',160,480),(3594,'THB','IL',140,345),(3595,'THB','KW',65,310),(3596,'THB','IT',95,255),(3597,'THB','JP',120,340),(3598,'THB','ES',100,260),(3599,'THB','VE',15,200),(3600,'THB','HU',85,195),(3601,'THB','PT',85,215),(3602,'THB','GR',100,210),(3603,'THB','KR',125,335),(3604,'THB','TW',105,275),(3605,'THB','PL',90,215),(3606,'THB','ZM',15,70),(3607,'THB','PR',30,290),(3608,'THB','CI',15,70),(3609,'THB','RO',80,195),(3610,'THB','BH',35,205),(3611,'THB','PA',25,280),(3612,'THB','GH',30,80),(3613,'THB','KH',15,80),(3614,'THB','SN',10,90),(3615,'THB','SA',55,200),(3616,'THB','RU',50,165),(3617,'THB','UG',10,65),(3618,'THB','BR',55,140),(3619,'THB','NI',10,90),(3620,'THB','MG',10,60),(3621,'THB','DO',15,105),(3622,'THB','MX',40,150),(3623,'THB','OM',25,150),(3624,'THB','CM',10,115),(3625,'THB','ZA',50,160),(3626,'THB','CL',50,155),(3627,'THB','KE',15,65),(3628,'THB','NP',10,60),(3629,'THB','PE',30,130),(3630,'THB','UA',30,95),(3631,'THB','MZ',10,125),(3632,'THB','TZ',5,30),(3633,'THB','AO',25,70),(3634,'THB','JO',20,95),(3635,'THB','ZW',10,70),(3636,'THB','TR',30,85),(3637,'THB','MU',15,55),(3638,'THB','SV',10,70),(3639,'THB','TH',50,150),(3640,'THB','CO',25,95),(3641,'THB','LK',10,15),(3642,'THB','CR',15,100),(3643,'THB','AR',35,90),(3644,'THB','MA',15,60),(3645,'THB','MY',40,155),(3646,'THB','KZ',20,65),(3647,'THB','DZ',15,30),(3648,'THB','ID',35,140),(3649,'THB','NG',20,135),(3650,'THB','GT',15,105),(3651,'THB','VN',30,115),(3652,'THB','BY',15,55),(3653,'THB','EG',20,120),(3654,'THB','UY',15,70),(3655,'THB','BD',15,30),(3656,'THB','PK',15,80),(3657,'THB','PH',25,90),(3658,'THB','ET',5,30),(3659,'THB','TN',15,25),(3660,'THB','LB',15,45),(3661,'THB','IN',15,60),(3662,'THB','PY',15,45),(3663,'THB','UZ',15,30),(3664,'THB','EC',15,50),(3665,'THB','MM',15,20),(3666,'THB','GE',15,20),(3667,'TRY','US',85,245),(3668,'TRY','CH',80,215),(3669,'TRY','AU',75,190),(3670,'TRY','GB',65,165),(3671,'TRY','DE',65,165),(3672,'TRY','DK',60,145),(3673,'TRY','AT',45,135),(3674,'TRY','NO',50,135),(3675,'TRY','CA',55,165),(3676,'TRY','NL',60,145),(3677,'TRY','SE',45,125),(3678,'TRY','IE',45,120),(3679,'TRY','BE',40,125),(3680,'TRY','FI',30,95),(3681,'TRY','FR',40,105),(3682,'TRY','NZ',40,115),(3683,'TRY','HK',35,100),(3684,'TRY','CZ',35,80),(3685,'TRY','SK',30,70),(3686,'TRY','AE',30,95),(3687,'TRY','SG',40,120),(3688,'TRY','IL',35,85),(3689,'TRY','KW',15,75),(3690,'TRY','IT',25,65),(3691,'TRY','JP',30,85),(3692,'TRY','ES',25,65),(3693,'TRY','VE',5,50),(3694,'TRY','HU',20,50),(3695,'TRY','PT',20,55),(3696,'TRY','GR',25,50),(3697,'TRY','KR',30,80),(3698,'TRY','TW',25,70),(3699,'TRY','PL',20,55),(3700,'TRY','ZM',5,20),(3701,'TRY','PR',10,70),(3702,'TRY','CI',5,15),(3703,'TRY','RO',20,50),(3704,'TRY','BH',10,50),(3705,'TRY','PA',5,70),(3706,'TRY','GH',5,20),(3707,'TRY','KH',5,20),(3708,'TRY','SN',5,20),(3709,'TRY','SA',15,50),(3710,'TRY','RU',15,40),(3711,'TRY','UG',5,15),(3712,'TRY','BR',15,35),(3713,'TRY','NI',5,20),(3714,'TRY','MG',5,15),(3715,'TRY','DO',5,25),(3716,'TRY','MX',10,40),(3717,'TRY','OM',5,40),(3718,'TRY','CM',5,30),(3719,'TRY','ZA',10,40),(3720,'TRY','CL',15,40),(3721,'TRY','KE',5,15),(3722,'TRY','NP',5,15),(3723,'TRY','PE',10,30),(3724,'TRY','UA',5,25),(3725,'TRY','MZ',5,30),(3726,'TRY','TZ',5,10),(3727,'TRY','AO',5,15),(3728,'TRY','JO',5,25),(3729,'TRY','ZW',5,15),(3730,'TRY','TR',10,20),(3731,'TRY','MU',5,15),(3732,'TRY','SV',5,15),(3733,'TRY','TH',10,35),(3734,'TRY','CO',5,25),(3735,'TRY','LK',5,10),(3736,'TRY','CR',5,25),(3737,'TRY','AR',10,20),(3738,'TRY','MA',5,15),(3739,'TRY','MY',10,40),(3740,'TRY','KZ',5,15),(3741,'TRY','DZ',5,10),(3742,'TRY','ID',10,35),(3743,'TRY','NG',5,35),(3744,'TRY','GT',5,25),(3745,'TRY','VN',10,30),(3746,'TRY','BY',5,15),(3747,'TRY','EG',5,30),(3748,'TRY','UY',5,15),(3749,'TRY','BD',5,10),(3750,'TRY','PK',5,20),(3751,'TRY','PH',5,20),(3752,'TRY','ET',5,10),(3753,'TRY','TN',5,10),(3754,'TRY','LB',5,10),(3755,'TRY','IN',5,15),(3756,'TRY','PY',5,10),(3757,'TRY','UZ',5,10),(3758,'TRY','EC',5,10),(3759,'TRY','MM',5,10),(3760,'TRY','GE',5,10),(3761,'TWD','US',330,930),(3762,'TWD','CH',310,810),(3763,'TWD','AU',280,720),(3764,'TWD','GB',245,625),(3765,'TWD','DE',245,620),(3766,'TWD','DK',225,555),(3767,'TWD','AT',165,505),(3768,'TWD','NO',185,515),(3769,'TWD','CA',205,625),(3770,'TWD','NL',220,555),(3771,'TWD','SE',175,475),(3772,'TWD','IE',175,455),(3773,'TWD','BE',160,465),(3774,'TWD','FI',120,360),(3775,'TWD','FR',145,395),(3776,'TWD','NZ',150,440),(3777,'TWD','HK',135,385),(3778,'TWD','CZ',130,310),(3779,'TWD','SK',125,265),(3780,'TWD','AE',115,365),(3781,'TWD','SG',150,445),(3782,'TWD','IL',130,320),(3783,'TWD','KW',60,290),(3784,'TWD','IT',90,235),(3785,'TWD','JP',110,320),(3786,'TWD','ES',90,245),(3787,'TWD','VE',10,185),(3788,'TWD','HU',80,180),(3789,'TWD','PT',80,200),(3790,'TWD','GR',95,195),(3791,'TWD','KR',120,310),(3792,'TWD','TW',95,255),(3793,'TWD','PL',80,205),(3794,'TWD','ZM',10,70),(3795,'TWD','PR',30,270),(3796,'TWD','CI',15,65),(3797,'TWD','RO',75,180),(3798,'TWD','BH',35,190),(3799,'TWD','PA',25,260),(3800,'TWD','GH',25,75),(3801,'TWD','KH',15,75),(3802,'TWD','SN',10,85),(3803,'TWD','SA',50,190),(3804,'TWD','RU',50,155),(3805,'TWD','UG',10,60),(3806,'TWD','BR',50,130),(3807,'TWD','NI',10,80),(3808,'TWD','MG',10,60),(3809,'TWD','DO',15,95),(3810,'TWD','MX',40,140),(3811,'TWD','OM',25,140),(3812,'TWD','CM',10,105),(3813,'TWD','ZA',45,150),(3814,'TWD','CL',50,145),(3815,'TWD','KE',15,60),(3816,'TWD','NP',10,55),(3817,'TWD','PE',30,125),(3818,'TWD','UA',30,85),(3819,'TWD','MZ',10,115),(3820,'TWD','TZ',5,25),(3821,'TWD','AO',25,65),(3822,'TWD','JO',20,90),(3823,'TWD','ZW',10,65),(3824,'TWD','TR',30,80),(3825,'TWD','MU',15,50),(3826,'TWD','SV',10,65),(3827,'TWD','TH',45,140),(3828,'TWD','CO',25,90),(3829,'TWD','LK',10,15),(3830,'TWD','CR',15,90),(3831,'TWD','AR',30,85),(3832,'TWD','MA',15,55),(3833,'TWD','MY',40,145),(3834,'TWD','KZ',15,60),(3835,'TWD','DZ',15,30),(3836,'TWD','ID',35,130),(3837,'TWD','NG',20,125),(3838,'TWD','GT',15,95),(3839,'TWD','VN',30,110),(3840,'TWD','BY',15,50),(3841,'TWD','EG',20,110),(3842,'TWD','UY',15,65),(3843,'TWD','BD',10,25),(3844,'TWD','PK',15,75),(3845,'TWD','PH',20,80),(3846,'TWD','ET',5,25),(3847,'TWD','TN',15,25),(3848,'TWD','LB',15,40),(3849,'TWD','IN',15,60),(3850,'TWD','PY',15,45),(3851,'TWD','UZ',15,25),(3852,'TWD','EC',15,45),(3853,'TWD','MM',15,20),(3854,'TWD','GE',15,20),(3855,'UAH','US',330,935),(3856,'UAH','CH',310,810),(3857,'UAH','AU',280,720),(3858,'UAH','GB',245,625),(3859,'UAH','DE',245,620),(3860,'UAH','DK',225,555),(3861,'UAH','AT',165,505),(3862,'UAH','NO',185,515),(3863,'UAH','CA',205,625),(3864,'UAH','NL',220,555),(3865,'UAH','SE',175,475),(3866,'UAH','IE',175,455),(3867,'UAH','BE',160,465),(3868,'UAH','FI',120,360),(3869,'UAH','FR',145,395),(3870,'UAH','NZ',150,440),(3871,'UAH','HK',135,385),(3872,'UAH','CZ',130,310),(3873,'UAH','SK',125,265),(3874,'UAH','AE',115,365),(3875,'UAH','SG',150,445),(3876,'UAH','IL',130,325),(3877,'UAH','KW',60,290),(3878,'UAH','IT',90,235),(3879,'UAH','JP',115,320),(3880,'UAH','ES',90,245),(3881,'UAH','VE',10,185),(3882,'UAH','HU',80,180),(3883,'UAH','PT',80,200),(3884,'UAH','GR',95,195),(3885,'UAH','KR',120,315),(3886,'UAH','TW',95,255),(3887,'UAH','PL',80,205),(3888,'UAH','ZM',10,70),(3889,'UAH','PR',30,275),(3890,'UAH','CI',15,65),(3891,'UAH','RO',75,180),(3892,'UAH','BH',35,190),(3893,'UAH','PA',25,260),(3894,'UAH','GH',25,75),(3895,'UAH','KH',15,75),(3896,'UAH','SN',10,85),(3897,'UAH','SA',50,190),(3898,'UAH','RU',50,155),(3899,'UAH','UG',10,60),(3900,'UAH','BR',50,130),(3901,'UAH','NI',10,80),(3902,'UAH','MG',10,60),(3903,'UAH','DO',15,95),(3904,'UAH','MX',40,140),(3905,'UAH','OM',25,140),(3906,'UAH','CM',10,105),(3907,'UAH','ZA',45,150),(3908,'UAH','CL',50,145),(3909,'UAH','KE',15,60),(3910,'UAH','NP',10,55),(3911,'UAH','PE',30,125),(3912,'UAH','UA',30,85),(3913,'UAH','MZ',10,115),(3914,'UAH','TZ',5,25),(3915,'UAH','AO',25,65),(3916,'UAH','JO',20,90),(3917,'UAH','ZW',10,65),(3918,'UAH','TR',30,80),(3919,'UAH','MU',15,50),(3920,'UAH','SV',10,65),(3921,'UAH','TH',45,140),(3922,'UAH','CO',25,90),(3923,'UAH','LK',10,15),(3924,'UAH','CR',15,90),(3925,'UAH','AR',30,85),(3926,'UAH','MA',15,55),(3927,'UAH','MY',40,145),(3928,'UAH','KZ',15,60),(3929,'UAH','DZ',15,30),(3930,'UAH','ID',35,130),(3931,'UAH','NG',20,125),(3932,'UAH','GT',15,95),(3933,'UAH','VN',30,110),(3934,'UAH','BY',15,50),(3935,'UAH','EG',20,110),(3936,'UAH','UY',15,65),(3937,'UAH','BD',10,25),(3938,'UAH','PK',15,75),(3939,'UAH','PH',20,80),(3940,'UAH','ET',5,25),(3941,'UAH','TN',15,25),(3942,'UAH','LB',15,40),(3943,'UAH','IN',15,60),(3944,'UAH','PY',15,45),(3945,'UAH','UZ',15,25),(3946,'UAH','EC',15,45),(3947,'UAH','MM',15,20),(3948,'UAH','GE',15,20),(3949,'USD','US',10,35),(3950,'USD','CH',10,30),(3951,'USD','AU',10,25),(3952,'USD','GB',10,20),(3953,'USD','DE',10,20),(3954,'USD','DK',10,20),(3955,'USD','AT',5,20),(3956,'USD','NO',5,20),(3957,'USD','CA',5,20),(3958,'USD','NL',10,20),(3959,'USD','SE',5,15),(3960,'USD','IE',5,15),(3961,'USD','BE',5,15),(3962,'USD','FI',5,15),(3963,'USD','FR',5,15),(3964,'USD','NZ',5,15),(3965,'USD','HK',5,15),(3966,'USD','CZ',5,10),(3967,'USD','SK',5,10),(3968,'USD','AE',5,15),(3969,'USD','SG',5,15),(3970,'USD','IL',5,10),(3971,'USD','KW',5,10),(3972,'USD','IT',5,10),(3973,'USD','JP',5,10),(3974,'USD','ES',5,10),(3975,'USD','VE',5,10),(3976,'USD','HU',5,10),(3977,'USD','PT',5,10),(3978,'USD','GR',5,10),(3979,'USD','KR',5,10),(3980,'USD','TW',5,10),(3981,'USD','PL',5,10),(3982,'USD','ZM',5,10),(3983,'USD','PR',5,10),(3984,'USD','CI',5,10),(3985,'USD','RO',5,10),(3986,'USD','BH',5,10),(3987,'USD','PA',5,10),(3988,'USD','GH',5,10),(3989,'USD','KH',5,10),(3990,'USD','SN',5,10),(3991,'USD','SA',5,10),(3992,'USD','RU',5,10),(3993,'USD','UG',5,10),(3994,'USD','BR',5,10),(3995,'USD','NI',5,10),(3996,'USD','MG',5,10),(3997,'USD','DO',5,10),(3998,'USD','MX',5,10),(3999,'USD','OM',5,10),(4000,'USD','CM',5,10),(4001,'USD','ZA',5,10),(4002,'USD','CL',5,10),(4003,'USD','KE',5,10),(4004,'USD','NP',5,10),(4005,'USD','PE',5,10),(4006,'USD','UA',5,10),(4007,'USD','MZ',5,10),(4008,'USD','TZ',5,10),(4009,'USD','AO',5,10),(4010,'USD','JO',5,10),(4011,'USD','ZW',5,10),(4012,'USD','TR',5,10),(4013,'USD','MU',5,10),(4014,'USD','SV',5,10),(4015,'USD','TH',5,10),(4016,'USD','CO',5,10),(4017,'USD','LK',5,10),(4018,'USD','CR',5,10),(4019,'USD','AR',5,10),(4020,'USD','MA',5,10),(4021,'USD','MY',5,10),(4022,'USD','KZ',5,10),(4023,'USD','DZ',5,10),(4024,'USD','ID',5,10),(4025,'USD','NG',5,10),(4026,'USD','GT',5,10),(4027,'USD','VN',5,10),(4028,'USD','BY',5,10),(4029,'USD','EG',5,10),(4030,'USD','UY',5,10),(4031,'USD','BD',5,10),(4032,'USD','PK',5,10),(4033,'USD','PH',5,10),(4034,'USD','ET',5,10),(4035,'USD','TN',5,10),(4036,'USD','LB',5,10),(4037,'USD','IN',5,10),(4038,'USD','PY',5,10),(4039,'USD','UZ',5,10),(4040,'USD','EC',5,10),(4041,'USD','MM',5,10),(4042,'USD','GE',5,10),(4043,'VND','US',272110,767785),(4044,'VND','CH',253755,667740),(4045,'VND','AU',230890,592820),(4046,'VND','GB',201305,515160),(4047,'VND','DE',199775,510995),(4048,'VND','DK',183805,456155),(4049,'VND','AT',134120,416790),(4050,'VND','NO',152020,424445),(4051,'VND','CA',168050,515320),(4052,'VND','NL',179795,456340),(4053,'VND','SE',143915,389175),(4054,'VND','IE',142415,375410),(4055,'VND','BE',130965,383820),(4056,'VND','FI',97910,297340),(4057,'VND','FR',121230,324500),(4058,'VND','NZ',123385,363230),(4059,'VND','HK',112205,317315),(4060,'VND','CZ',106975,256825),(4061,'VND','SK',100925,218725),(4062,'VND','AE',95240,298900),(4063,'VND','SG',124270,367275),(4064,'VND','IL',108450,265275),(4065,'VND','KW',48915,238435),(4066,'VND','IT',73820,194880),(4067,'VND','JP',92560,263055),(4068,'VND','ES',75885,200680),(4069,'VND','VE',9950,153710),(4070,'VND','HU',63945,148785),(4071,'VND','PT',63835,166400),(4072,'VND','GR',78710,161200),(4073,'VND','KR',97045,256985),(4074,'VND','TW',78875,211150),(4075,'VND','PL',67490,167065),(4076,'VND','ZM',9745,55615),(4077,'VND','PR',23840,224105),(4078,'VND','CI',13010,53765),(4079,'VND','RO',61995,150005),(4080,'VND','BH',28150,156065),(4081,'VND','PA',18855,214215),(4082,'VND','GH',22600,63065),(4083,'VND','KH',13030,62565),(4084,'VND','SN',9485,67975),(4085,'VND','SA',40465,154935),(4086,'VND','RU',40215,128320),(4087,'VND','UG',9450,49675),(4088,'VND','BR',42875,105710),(4089,'VND','NI',9430,67690),(4090,'VND','MG',9540,47985),(4091,'VND','DO',11440,79555),(4092,'VND','MX',32330,117005),(4093,'VND','OM',20325,117010),(4094,'VND','CM',9415,87195),(4095,'VND','ZA',38525,124000),(4096,'VND','CL',40140,119955),(4097,'VND','KE',11585,50070),(4098,'VND','NP',9415,45480),(4099,'VND','PE',23975,100915),(4100,'VND','UA',22855,71385),(4101,'VND','MZ',9415,94695),(4102,'VND','TZ',1190,21730),(4103,'VND','AO',20880,54445),(4104,'VND','JO',15395,73125),(4105,'VND','ZW',9465,51890),(4106,'VND','TR',24525,67110),(4107,'VND','MU',12560,42925),(4108,'VND','SV',9415,51990),(4109,'VND','TH',36795,115775),(4110,'VND','CO',18660,72220),(4111,'VND','LK',9060,12515),(4112,'VND','CR',11375,75570),(4113,'VND','AR',25410,68830),(4114,'VND','MA',11350,44545),(4115,'VND','MY',32200,118425),(4116,'VND','KZ',13775,50410),(4117,'VND','DZ',11290,23900),(4118,'VND','ID',28735,106590),(4119,'VND','NG',16150,102165),(4120,'VND','GT',11315,80010),(4121,'VND','VN',23510,89095),(4122,'VND','BY',11040,42975),(4123,'VND','EG',14885,90930),(4124,'VND','UY',11735,54085),(4125,'VND','BD',9660,21390),(4126,'VND','PK',10595,60980),(4127,'VND','PH',18345,67700),(4128,'VND','ET',2945,22425),(4129,'VND','TN',11305,20480),(4130,'VND','LB',11410,34110),(4131,'VND','IN',10520,47520),(4132,'VND','PY',11310,36360),(4133,'VND','UZ',11315,22075),(4134,'VND','EC',10995,37710),(4135,'VND','MM',11315,12360),(4136,'VND','GE',11355,14470),(4137,'ZAR','US',180,510),(4138,'ZAR','CH',170,440),(4139,'ZAR','AU',155,390),(4140,'ZAR','GB',135,340),(4141,'ZAR','DE',130,340),(4142,'ZAR','DK',120,300),(4143,'ZAR','AT',90,275),(4144,'ZAR','NO',100,280),(4145,'ZAR','CA',110,340),(4146,'ZAR','NL',120,300),(4147,'ZAR','SE',95,255),(4148,'ZAR','IE',95,250),(4149,'ZAR','BE',85,255),(4150,'ZAR','FI',65,195),(4151,'ZAR','FR',80,215),(4152,'ZAR','NZ',80,240),(4153,'ZAR','HK',75,210),(4154,'ZAR','CZ',70,170),(4155,'ZAR','SK',65,145),(4156,'ZAR','AE',65,200),(4157,'ZAR','SG',80,245),(4158,'ZAR','IL',70,175),(4159,'ZAR','KW',30,160),(4160,'ZAR','IT',50,130),(4161,'ZAR','JP',60,175),(4162,'ZAR','ES',50,135),(4163,'ZAR','VE',5,100),(4164,'ZAR','HU',40,100),(4165,'ZAR','PT',40,110),(4166,'ZAR','GR',50,105),(4167,'ZAR','KR',65,170),(4168,'ZAR','TW',50,140),(4169,'ZAR','PL',45,110),(4170,'ZAR','ZM',5,35),(4171,'ZAR','PR',15,150),(4172,'ZAR','CI',10,35),(4173,'ZAR','RO',40,100),(4174,'ZAR','BH',20,105),(4175,'ZAR','PA',10,140),(4176,'ZAR','GH',15,40),(4177,'ZAR','KH',10,40),(4178,'ZAR','SN',5,45),(4179,'ZAR','SA',25,100),(4180,'ZAR','RU',25,85),(4181,'ZAR','UG',5,35),(4182,'ZAR','BR',30,70),(4183,'ZAR','NI',5,45),(4184,'ZAR','MG',5,30),(4185,'ZAR','DO',10,55),(4186,'ZAR','MX',20,75),(4187,'ZAR','OM',15,75),(4188,'ZAR','CM',5,60),(4189,'ZAR','ZA',25,80),(4190,'ZAR','CL',25,80),(4191,'ZAR','KE',10,35),(4192,'ZAR','NP',5,30),(4193,'ZAR','PE',15,65),(4194,'ZAR','UA',15,45),(4195,'ZAR','MZ',5,65),(4196,'ZAR','TZ',5,15),(4197,'ZAR','AO',15,35),(4198,'ZAR','JO',10,50),(4199,'ZAR','ZW',5,35),(4200,'ZAR','TR',15,45),(4201,'ZAR','MU',10,30),(4202,'ZAR','SV',5,35),(4203,'ZAR','TH',25,75),(4204,'ZAR','CO',10,50),(4205,'ZAR','LK',5,10),(4206,'ZAR','CR',10,50),(4207,'ZAR','AR',15,45),(4208,'ZAR','MA',10,30),(4209,'ZAR','MY',20,80),(4210,'ZAR','KZ',10,35),(4211,'ZAR','DZ',5,15),(4212,'ZAR','ID',20,70),(4213,'ZAR','NG',10,70),(4214,'ZAR','GT',5,55),(4215,'ZAR','VN',15,60),(4216,'ZAR','BY',5,30),(4217,'ZAR','EG',10,60),(4218,'ZAR','UY',10,35),(4219,'ZAR','BD',5,15),(4220,'ZAR','PK',5,40),(4221,'ZAR','PH',10,45),(4222,'ZAR','ET',5,15),(4223,'ZAR','TN',5,15),(4224,'ZAR','LB',10,25),(4225,'ZAR','IN',5,30),(4226,'ZAR','PY',5,25),(4227,'ZAR','UZ',5,15),(4228,'ZAR','EC',5,25),(4229,'ZAR','MM',5,10),(4230,'ZAR','GE',10,15); /*!40000 ALTER TABLE `wp_gla_budget_recommendations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gla_merchant_issues` -- DROP TABLE IF EXISTS `wp_gla_merchant_issues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gla_merchant_issues` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `product_id` bigint(20) NOT NULL, `issue` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `code` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `severity` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'warning', `product` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `action` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `action_url` varchar(1024) COLLATE utf8mb4_unicode_520_ci NOT NULL, `applicable_countries` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `source` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'mc', `type` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'product', `created_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gla_merchant_issues` -- LOCK TABLES `wp_gla_merchant_issues` WRITE; /*!40000 ALTER TABLE `wp_gla_merchant_issues` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gla_merchant_issues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gla_shipping_rates` -- DROP TABLE IF EXISTS `wp_gla_shipping_rates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gla_shipping_rates` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL, `currency` varchar(3) COLLATE utf8mb4_unicode_520_ci NOT NULL, `rate` double NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `country` (`country`), KEY `currency` (`currency`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gla_shipping_rates` -- LOCK TABLES `wp_gla_shipping_rates` WRITE; /*!40000 ALTER TABLE `wp_gla_shipping_rates` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gla_shipping_rates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_gla_shipping_times` -- DROP TABLE IF EXISTS `wp_gla_shipping_times`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_gla_shipping_times` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL, `time` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `country` (`country`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_gla_shipping_times` -- LOCK TABLES `wp_gla_shipping_times` WRITE; /*!40000 ALTER TABLE `wp_gla_shipping_times` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_gla_shipping_times` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailchimp_carts` -- DROP TABLE IF EXISTS `wp_mailchimp_carts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailchimp_carts` ( `id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` int(11) DEFAULT NULL, `cart` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailchimp_carts` -- LOCK TABLES `wp_mailchimp_carts` WRITE; /*!40000 ALTER TABLE `wp_mailchimp_carts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailchimp_carts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailchimp_jobs` -- DROP TABLE IF EXISTS `wp_mailchimp_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailchimp_jobs` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `obj_id` text COLLATE utf8mb4_unicode_520_ci, `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailchimp_jobs` -- LOCK TABLES `wp_mailchimp_jobs` WRITE; /*!40000 ALTER TABLE `wp_mailchimp_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailchimp_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_custom_fields` -- DROP TABLE IF EXISTS `wp_mailpoet_custom_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_custom_fields` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL, `type` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL, `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_custom_fields` -- LOCK TABLES `wp_mailpoet_custom_fields` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_custom_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_custom_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_dynamic_segment_filters` -- DROP TABLE IF EXISTS `wp_mailpoet_dynamic_segment_filters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_dynamic_segment_filters` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `segment_id` int(11) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `filter_data` longblob, PRIMARY KEY (`id`), KEY `segment_id` (`segment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_dynamic_segment_filters` -- LOCK TABLES `wp_mailpoet_dynamic_segment_filters` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_dynamic_segment_filters` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_dynamic_segment_filters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_feature_flags` -- DROP TABLE IF EXISTS `wp_mailpoet_feature_flags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_feature_flags` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL, `value` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_feature_flags` -- LOCK TABLES `wp_mailpoet_feature_flags` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_feature_flags` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_feature_flags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_forms` -- DROP TABLE IF EXISTS `wp_mailpoet_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_forms` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled', `body` longtext COLLATE utf8mb4_unicode_520_ci, `settings` longtext COLLATE utf8mb4_unicode_520_ci, `styles` longtext COLLATE utf8mb4_unicode_520_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_forms` -- LOCK TABLES `wp_mailpoet_forms` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_forms` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_log` -- DROP TABLE IF EXISTS `wp_mailpoet_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `level` int(11) DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_520_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_log` -- LOCK TABLES `wp_mailpoet_log` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_mapping_to_external_entities` -- DROP TABLE IF EXISTS `wp_mailpoet_mapping_to_external_entities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_mapping_to_external_entities` ( `old_id` int(11) unsigned NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL, `new_id` int(11) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`old_id`,`type`), KEY `new_id` (`new_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_mapping_to_external_entities` -- LOCK TABLES `wp_mailpoet_mapping_to_external_entities` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_mapping_to_external_entities` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_mapping_to_external_entities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletter_links` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletter_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletter_links` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `queue_id` int(11) unsigned NOT NULL, `url` varchar(2083) COLLATE utf8mb4_unicode_520_ci NOT NULL, `hash` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `newsletter_id` (`newsletter_id`), KEY `queue_id` (`queue_id`), KEY `url` (`url`(100)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletter_links` -- LOCK TABLES `wp_mailpoet_newsletter_links` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletter_option` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletter_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletter_option` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `option_field_id` int(11) unsigned NOT NULL, `value` longtext COLLATE utf8mb4_unicode_520_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `newsletter_id_option_field_id` (`newsletter_id`,`option_field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletter_option` -- LOCK TABLES `wp_mailpoet_newsletter_option` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_option` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletter_option_fields` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletter_option_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletter_option_fields` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL, `newsletter_type` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `name_newsletter_type` (`newsletter_type`,`name`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletter_option_fields` -- LOCK TABLES `wp_mailpoet_newsletter_option_fields` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_option_fields` DISABLE KEYS */; INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (1,'isScheduled','standard',NULL,'2021-09-06 16:26:01'),(2,'scheduledAt','standard',NULL,'2021-09-06 16:26:01'),(3,'event','welcome',NULL,'2021-09-06 16:26:01'),(4,'segment','welcome',NULL,'2021-09-06 16:26:01'),(5,'role','welcome',NULL,'2021-09-06 16:26:01'),(6,'afterTimeNumber','welcome',NULL,'2021-09-06 16:26:01'),(7,'afterTimeType','welcome',NULL,'2021-09-06 16:26:01'),(8,'intervalType','notification',NULL,'2021-09-06 16:26:01'),(9,'timeOfDay','notification',NULL,'2021-09-06 16:26:01'),(10,'weekDay','notification',NULL,'2021-09-06 16:26:01'),(11,'monthDay','notification',NULL,'2021-09-06 16:26:01'),(12,'nthWeekDay','notification',NULL,'2021-09-06 16:26:01'),(13,'schedule','notification',NULL,'2021-09-06 16:26:01'),(14,'group','automatic',NULL,'2021-09-06 16:26:01'),(15,'event','automatic',NULL,'2021-09-06 16:26:01'),(16,'sendTo','automatic',NULL,'2021-09-06 16:26:01'),(17,'segment','automatic',NULL,'2021-09-06 16:26:01'),(18,'afterTimeNumber','automatic',NULL,'2021-09-06 16:26:01'),(19,'afterTimeType','automatic',NULL,'2021-09-06 16:26:01'),(20,'meta','automatic',NULL,'2021-09-06 16:26:01'); /*!40000 ALTER TABLE `wp_mailpoet_newsletter_option_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletter_posts` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletter_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletter_posts` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `post_id` int(11) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `newsletter_id` (`newsletter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletter_posts` -- LOCK TABLES `wp_mailpoet_newsletter_posts` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_posts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletter_segment` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletter_segment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletter_segment` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `segment_id` int(11) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `newsletter_segment` (`newsletter_id`,`segment_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletter_segment` -- LOCK TABLES `wp_mailpoet_newsletter_segment` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_segment` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_segment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletter_templates` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletter_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletter_templates` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) DEFAULT '0', `name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL, `categories` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '[]', `description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `body` longtext COLLATE utf8mb4_unicode_520_ci, `thumbnail` longtext COLLATE utf8mb4_unicode_520_ci, `readonly` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletter_templates` -- LOCK TABLES `wp_mailpoet_newsletter_templates` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletter_templates` DISABLE KEYS */; INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (1,0,'Welcome Email: Blank 1 Column','[\"welcome\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Hi, new subscriber!<\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>[subscriber:firstname | default:Subscriber],<\\/p>\\n<p> <\\/p>\\n<p>You recently joined our list and we\'d like to give you a warm welcome!<\\/p>\\n<p> <\\/p>\\n<p>Want to get to know us better? Check out some of our most popular articles: <\\/p>\\n<ol>\\n<li><a href=\\\"http:\\/\\/www.mailpoet.com\\/the-importance-of-focus-when-writing\\/\\\">The Importance of Focus When Writing<\\/a><\\/li>\\n<li><a href=\\\"http:\\/\\/www.mailpoet.com\\/write-great-subject-line\\/\\\">How to Write a Great Subject Line<\\/a><\\/li>\\n<li><a href=\\\"http:\\/\\/www.mailpoet.com\\/just-sit-write-advice-motivation-ernest-hemingway\\/\\\">Just Sit Down and Write – Advice on Motivation from Ernest Hemingway<\\/a><\\/li>\\n<\\/ol>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/welcome-email-blank-1-column/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(2,0,'Welcome Email: Blank 1:2 Column','[\"welcome\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Hi, new subscriber!<\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>[subscriber:firstname | default:Subscriber],<\\/p>\\n<p> <\\/p>\\n<p>You recently joined our list and we\'d like to give you a warm welcome!<\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>Our Most Popular Posts<\\/h3>\"},{\"type\":\"text\",\"text\":\"<ul>\\n<li><a href=\\\"http:\\/\\/www.mailpoet.com\\/the-importance-of-focus-when-writing\\/\\\">The Importance of Focus When Writing<\\/a><\\/li>\\n<li><a href=\\\"http:\\/\\/www.mailpoet.com\\/write-great-subject-line\\/\\\">How to Write a Great Subject Line<\\/a><\\/li>\\n<li><a href=\\\"http:\\/\\/www.mailpoet.com\\/just-sit-write-advice-motivation-ernest-hemingway\\/\\\">Just Sit Down and Write – Advice on Motivation from Ernest Hemingway<\\/a><\\/li>\\n<\\/ul>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>What\'s Next?<\\/h3>\"},{\"type\":\"text\",\"text\":\"<p>Add a single button to your newsletter in order to have one clear call-to-action, which will increase your click rates.<\\/p>\"},{\"type\":\"button\",\"text\":\"Read up!\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/welcome-email-blank-1-2-column/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(3,0,'Gift Welcome','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/gift\\/Gift-Header-1.jpg\",\"alt\":\"Gift-Header-1\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"920px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#e7e7e7\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #dd2d2d;\\\">We\'re so happy you\'re onboard!<\\/span><\\/h2>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit. Fusce finibus convallis augue, ut viverra felis placerat in. <\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Curabitur et commodo ipsum. Mauris tellus metus, tristique vel sollicitudin ut, malesuada in augue. Aliquam ultricies purus vel commodo vehicula.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get Started\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#dd2d2d\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/gift\\/Gift-Footer.jpg\",\"alt\":\"Gift-Footer\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"920px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px; text-align: center;\\\"><span style=\\\"color: #808080;\\\"><strong>Address Line 1<\\/strong><\\/span><\\/p>\\n<p style=\\\"font-size: 11px; text-align: center;\\\"><span style=\\\"color: #808080;\\\"><strong>Address Line 2<\\/strong><\\/span><\\/p>\\n<p style=\\\"font-size: 11px; text-align: center;\\\"><span style=\\\"color: #808080;\\\"><strong>City<\\/strong><\\/span><\\/p>\\n<p style=\\\"font-size: 11px; text-align: center;\\\"><span style=\\\"color: #808080;\\\"><strong>Country<\\/strong><\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"5.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 11px;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><span> | <\\/span><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#dd2d2d\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/gift/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(4,0,'Minimal','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"29px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#303c54\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/Minimal-Logo1.png\",\"alt\":\"Minimal-Logo1\",\"fullWidth\":false,\"width\":\"590px\",\"height\":\"93px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"80px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><span style=\\\"color: #8b9cbc;\\\">EST.2009<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"41px\"}}},{\"type\":\"text\",\"text\":\"<h2>Welcome to Minimal, Kim.<\\/h2>\"},{\"type\":\"text\",\"text\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit. Fusce finibus convallis augue, ut viverra felis placerat in. Curabitur et commodo ipsum. Mauris tellus metus, tristique vel sollicitudin ut, malesuada in augue. Aliquam ultricies purus vel commodo vehicula. Cras sollicitudin nunc facilisis neque tristique sagittis.<\\/p>\\n<p><\\/p>\\n<p>Maecenas iaculis, lacus malesuada dictum dapibus, justo justo molestie lorem, ac dapibus magna urna vel arcu. Aliquam erat volutpat. Sed bibendum, ipsum sed ullamcorper blandit, eros odio interdum nibh, non venenatis metus lacus vitae lectus.<\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"30px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"2px\",\"borderColor\":\"#d9d9d9\"}}},{\"type\":\"text\",\"text\":\"<h2>Some of our recent stories<\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/plasma-stingray111-800x533.jpg\",\"alt\":\"plasma-stingray111-800x533\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"533px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>Story Title Goes Here<\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><strong><a href=\\\"https:\\/\\/wordpress.org\\/\\\">Read More<\\/a><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/gettyimages-578313682-800x533.jpg\",\"alt\":\"gettyimages-578313682-800x533\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"533px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>Story Title Goes Here<\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><strong><a href=\\\"https:\\/\\/wordpress.org\\/\\\">Read More<\\/a><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/5_what_to_do_p352m1141746-800x533.jpg\",\"alt\":\"5_what_to_do_p352m1141746-800x533\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"533px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>Story Title Goes Here<\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><strong><a href=\\\"https:\\/\\/wordpress.org\\/\\\">Read More<\\/a><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f3f3f3\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"47px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/Minimal-Logo-Small.png\",\"alt\":\"Minimal-Logo-Small\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"23px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #808080;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #808080;\\\">Unsubscribe<\\/a><\\/span><\\/p>\\n<p><span style=\\\"color: #808080;\\\"><a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #808080;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #999999;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f3f3f3\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Georgia\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Georgia\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Georgia\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Georgia\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#303c54\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"30px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"2px\",\"borderColor\":\"#d9d9d9\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.8.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.8.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"29px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/minimal/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(5,0,'New Phone Purchase','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1b1821\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Logo.png\",\"alt\":\"Phone-Logo\",\"fullWidth\":true,\"width\":\"122px\",\"height\":\"23px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1b1821\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Title.png\",\"alt\":\"Phone-Title\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"215px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Header.jpg\",\"alt\":\"Phone-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"920px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Welcome to your brand new Casia 7200.<\\/strong><\\/span><\\/h3>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #8748d5;\\\">Let\'s get you all set up.<\\/span><\\/strong><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit. Fusce finibus convallis augue, ut viverra felis placerat in.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get Started\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#8748d5\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"159px\",\"lineHeight\":\"45px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#2c2c2c\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px; text-align: left;\\\"><span style=\\\"color: #999999;\\\">Address Line 1<\\/span><\\/p>\\n<p style=\\\"font-size: 11px; text-align: left;\\\"><span style=\\\"color: #999999;\\\">Address Line 2<\\/span><\\/p>\\n<p style=\\\"font-size: 11px; text-align: left;\\\"><span style=\\\"color: #999999;\\\">City<\\/span><\\/p>\\n<p style=\\\"font-size: 11px; text-align: left;\\\"><span style=\\\"color: #999999;\\\">Country<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Logo.png\",\"alt\":\"Phone-Logo\",\"fullWidth\":false,\"width\":\"122px\",\"height\":\"23px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"pinterest\",\"link\":\"http:\\/\\/www.pinterest.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Pinterest.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Pinterest\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right; font-size: 11px;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><\\/p>\\n<p style=\\\"text-align: right; font-size: 11px;\\\"><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#8748d5\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#1b1821\"},\"body\":{\"backgroundColor\":\"#1b1821\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.9.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.9.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/phone/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(6,0,'Sunglasses','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Logo.jpg\",\"alt\":\"Glasses-Logo\",\"fullWidth\":false,\"width\":\"250px\",\"height\":\"66px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"padding\":\"17px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#f8b849\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Header-2.jpg\",\"alt\":\"Glasses-Header-2\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"116px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>Here\'s what we sent you<\\/strong><\\/span><\\/h3>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Images-1.jpg\",\"alt\":\"Glasses-Images-1\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"650px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Choose These Frames\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8b849\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"195px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Images-2.jpg\",\"alt\":\"Glasses-Images-2\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"650px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Choose These Frames\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8b849\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"195px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Images-3.jpg\",\"alt\":\"Glasses-Images-3\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"650px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Choose These Frames\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8b849\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"195px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"padding\":\"34.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#f8b849\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Header.jpg\",\"alt\":\"Glasses-Header\",\"fullWidth\":true,\"width\":\"640px\",\"height\":\"920px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Our Summer Range Is Here<\\/strong><\\/h3>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit.<\\/p>\\n<p><\\/p>\\n<p>Fusce finibus convallis augue, ut viverra felis placerat in. Curabitur et commodo ipsum. Mauris tellus metus, tristique vel sollicitudin ut, malesuada in augue. <\\/p>\"},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8b849\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"137px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"padding\":\"34.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#f8b849\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>Got any questions or need some help?<\\/strong><\\/span><\\/h2>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">We\'re just a click or a phone call away.<\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><\\/span><\\/p>\\n<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>Call Us:<\\/strong> 08856877854<\\/span><\\/h3>\\n<h3 style=\\\"text-align: center;\\\"><\\/h3>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"padding\":\"23.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#f8b849\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Email.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}]},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 11px;\\\"><strong><span style=\\\"color: #808080;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #808080;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #808080;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/><span style=\\\"color: #808080;\\\">Add your postal address here!<\\/span><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/sunglasses/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(7,0,'Real Estate','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#8691be\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Logo-1-150x84.jpg\",\"alt\":\"Property-Logo-1\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"84px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#8691be\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">TAKING THE WORRY OUT OF REAL ESTATE<\\/span><\\/strong><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Welcome Home<\\/span><\\/h1>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Header.jpg\",\"alt\":\"Property-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"782px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\">We\'re here to help you move<\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Icon-1.png\",\"alt\":\"Property-Icon-1\",\"fullWidth\":false,\"width\":\"48px\",\"height\":\"48px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Icon-2.png\",\"alt\":\"Property-Icon-2\",\"fullWidth\":false,\"width\":\"48px\",\"height\":\"48px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Icon-3.png\",\"alt\":\"Property-Icon-3\",\"fullWidth\":false,\"width\":\"48px\",\"height\":\"48px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"22.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#8691be\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">We\'d love to keep you updated with our latest news. <\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Sign up to our newsletter now and you\'ll never miss a thing.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Sign Up Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#8691be\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"24px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#6a7087\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #ffffff;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #ffffff;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #ffffff;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/><span style=\\\"color: #ffffff;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#6a7087\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.8.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.8.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/real-estate/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(8,0,'App Welcome','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#32b6c6\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Logo-1.png\",\"alt\":\"App-Signup-Logo\",\"fullWidth\":false,\"width\":\"80px\",\"height\":\"80px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center; margin: 0;\\\"><strong>Welcome to Appy<\\/strong><\\/h1><p style=\\\"text-align: center; margin: 0;\\\"><span style=\\\"color: #ffffff;\\\">Let\'s get started!<\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Header.png\",\"alt\":\"App-Signup-Header\",\"fullWidth\":false,\"width\":\"1280px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Hi [subscriber:firstname | default:subscriber],<\\/p>\\n <p style=\\\"text-align: center;\\\"><\\/p>\\n <p style=\\\"text-align: center;\\\">In MailPoet, you can write emails in plain text, just like in a regular email. This can make your email newsletters more personal and attention-grabbing.<\\/p>\\n <p style=\\\"text-align: center;\\\"><\\/p>\\n <p style=\\\"text-align: center;\\\">Is this too simple? You can still style your text with basic formatting, like <strong>bold<\\/strong> or <em>italics.<\\/em><\\/p>\\n <p style=\\\"text-align: center;\\\"><\\/p>\\n <p style=\\\"text-align: center;\\\">Finally, you can also add a call-to-action button between 2 blocks of text, like this:<\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}},{\"type\":\"button\",\"text\":\"Get Started Here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#32b6c6\",\"borderColor\":\"#32b6c6\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"188px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Team.jpg\",\"alt\":\"App-Signup-Team\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Logo-Footer.png\",\"alt\":\"App-Signup-Logo-Footer\",\"fullWidth\":false,\"width\":\"50px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\"><strong>Appy<\\/strong><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><span>Address Line 1<\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><span>Address Line 2<\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><span>City<\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><span> | <\\/span><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#404040\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#404040\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#32b6c6\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#32b6c6\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/app_welcome/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(9,0,'Welcome to FoodBox','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f4f4f4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-Logo.png\",\"alt\":\"Food-Delivery-Logo\",\"fullWidth\":false,\"width\":\"640px\",\"height\":\"180px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-App.png\",\"alt\":\"Food-Delivery-App\",\"fullWidth\":false,\"width\":\"640px\",\"height\":\"180px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h1><strong>Welcome to FoodBox<\\/strong><\\/h1>\\n <h2><strong>Lorem ipsum dolor sit amet<\\/strong><\\/h2>\\n <p>Curabitur sollicitudin eros eu cursus sollicitudin. Suspendisse laoreet sollicitudin urna, ut lacinia risus dictum a. Integer a neque eu magna commodo sodales eu eget ante.<\\/p>\"},{\"type\":\"button\",\"text\":\"Get Started\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#7cc119\",\"borderColor\":\"#7cc119\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-Focus.jpg\",\"alt\":\"Food-Delivery-Focus\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"31.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#e5e5e5\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\">Get started in 3 simple steps<\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-1-1.png\",\"alt\":\"Food-Delivery-1\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"250px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur sollicitudin eros eu cursus sollicitudin.<\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-2-1.png\",\"alt\":\"Food-Delivery-2\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"250px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur sollicitudin eros eu cursus sollicitudin.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-3-1.png\",\"alt\":\"Food-Delivery-3\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"250px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur sollicitudin eros eu cursus sollicitudin.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"button\",\"text\":\"Get Started\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#7cc119\",\"borderColor\":\"#7cc119\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#4599da\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 14px;\\\"><strong><span style=\\\"color: #ffffff;\\\">Link 1 - Link 2 - Link 3 - Link 4<\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"24px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#4599da\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f4f4f4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\"},\"h1\":{\"fontColor\":\"#4599da\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#878787\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"link\":{\"fontColor\":\"#4599da\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f4f4f4\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/food_box/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(10,0,'Poet','[\"welcome\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ebebeb\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ebebeb\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#909090\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"144px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Logo.png\",\"alt\":\"Poet-Logo\",\"fullWidth\":false,\"width\":\"166px\",\"height\":\"144px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1>Thanks for signing up!<\\/h1>\\n <p><span style=\\\"color: #000000;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"66px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 12px;\\\"><span style=\\\"color: #999999;\\\"><strong>Latest p<\\/strong><\\/span><\\/p>\\n <h2><strong>The 26th of December<\\/strong><\\/h2>\\n <h3><span>A Tuesday, day of Tiw,<\\/span><br \\/><span>god of war, dawns in darkness.<\\/span><br \\/><span>The short holiday day of talking by the fire,<\\/span><br \\/><span>floating on snowshoes among<\\/span><br \\/><span>ancient self-pollarded maples,<\\/span><br \\/><span>visiting, being visited, giving<\\/span><br \\/><span>a rain gauge, receiving red socks,<\\/span><br \\/><span>watching snow buntings nearly over<\\/span><br \\/><span>their heads in snow stab at spirtled bits<\\/span><br \\/><span>of sunflower seeds the chickadees<\\/span><br \\/><span>hold with their feet to a bough<\\/span><br \\/><span>and hack apart, scattering debris<\\/span><br \\/><span>like sloppy butchers, is over.<\\/span><br \\/><span>Irregular life begins. Telephone calls,<\\/span><br \\/><span>Google searches, evasive letters,<\\/span><br \\/><span>complicated arrangements, faxes,<\\/span><br \\/><span>second thoughts, consultations,<\\/span><br \\/><span>e-mails, solemnly given kisses.<\\/span><\\/h3>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Images-1.jpg\",\"alt\":\"Poet-Images\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"1200px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#393939\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><span style=\\\"color: #ffffff;\\\">What did you think of this poem? Let me know on one of my social media channels.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"right\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\">Poetry books<\\/h1>\\n <p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Books-1.png\",\"alt\":\"Poet-Books-1\",\"fullWidth\":false,\"width\":\"220px\",\"height\":\"646px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Buy online\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#393939\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Books-3.png\",\"alt\":\"Poet-Books-3\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"646px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Buy online\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#393939\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Books-2.png\",\"alt\":\"Poet-Books-2\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"646px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Buy online\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#393939\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Logo.png\",\"alt\":\"Poet-Logo\",\"fullWidth\":false,\"width\":\"166px\",\"height\":\"144px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#939393\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#333333\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#646464\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#393939\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"24px\"},\"h2\":{\"fontColor\":\"#393939\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"30px\"},\"h3\":{\"fontColor\":\"#646464\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\"},\"link\":{\"fontColor\":\"#393939\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ebebeb\"},\"body\":{\"backgroundColor\":\"#ebebeb\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Buy online\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#393939\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#939393\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#333333\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\",\"styles\":{\"block\":{\"textAlign\":\"right\"}}},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#909090\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/poet/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(11,0,'Post Notifications: Blank 1 Column','[\"notification\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"fake-logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Check Out Our New Blog Posts! <\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>MailPoet can <span style=\\\"line-height: 1.6em; background-color: inherit;\\\"><em>automatically<\\/em> <\\/span><span style=\\\"line-height: 1.6em; background-color: inherit;\\\">send your new blog posts to your subscribers.<\\/span><\\/p>\\n<p><span style=\\\"line-height: 1.6em; background-color: inherit;\\\"><\\/span><\\/p>\\n<p><span style=\\\"line-height: 1.6em; background-color: inherit;\\\">Below, you\'ll find three recent posts, which are displayed automatically, thanks to the <em>Automatic Latest Content<\\/em> widget, which can be found in the right sidebar, under <em>Content<\\/em>.<\\/span><\\/p>\\n<p><span style=\\\"line-height: 1.6em; background-color: inherit;\\\"><\\/span><\\/p>\\n<p><span style=\\\"line-height: 1.6em; background-color: inherit;\\\">To edit the settings and styles of your post, simply click on a post below.<\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read the post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/post-notifications-blank-1-column/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(12,0,'Modular Style Stories','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/Modular-Logo.png\",\"alt\":\"Modular-Logo\",\"fullWidth\":false,\"width\":\"271px\",\"height\":\"37px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"26px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"pinterest\",\"link\":\"http:\\/\\/www.pinterest.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Pinterest.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Pinterest\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\",\"height\":\"40px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"1px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"120px\",\"lineHeight\":\"40px\",\"fontColor\":\"#b956c5\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"3px\",\"borderColor\":\"#efe7f0\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/ladybirds-transparent-shell-reveals-how-it-folds-its-wings\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/gettyimages-578313682-800x533.jpg\",\"alt\":\"Ladybird\\u2019s transparent shell reveals how it folds its wings\",\"fullWidth\":false,\"width\":660,\"height\":440,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Ladybird’s transparent shell reveals how it folds its wings<\\/strong><\\/h3>\\n<p class=\\\"mailpoet_wp_post\\\">They certainly know how to fold. A see-through artificial wing case has been used to watch for the first time as ladybirds put away their wings after flight.<\\/p>\"},{\"type\":\"button\",\"text\":\"Read More\",\"url\":\"http:\\/\\/mailpoet.info\\/ladybirds-transparent-shell-reveals-how-it-folds-its-wings\\/\",\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"103px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/plasma-stingray111-800x533.jpg\",\"alt\":\"Plasma jet engines that could take you from the ground to space\",\"fullWidth\":false,\"width\":660,\"height\":440,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Plasma jet engines that could take you from ground to space<\\/strong><\\/h3>\\n<p class=\\\"mailpoet_wp_post\\\">FORGET fuel-powered jet engines. We’re on the verge of having aircraft that can fly from the ground up to the edge of space using air and electricity alone.<\\/p>\"},{\"type\":\"button\",\"text\":\"Read More\",\"url\":\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\",\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"103px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/5_what_to_do_p352m1141746-800x533.jpg\",\"alt\":\"Cutting through the smog: What to do to fight air pollution\",\"fullWidth\":false,\"width\":660,\"height\":440,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Cutting through the smog: What to do to fight air pollution<\\/strong><\\/span><\\/h3>\"},{\"type\":\"button\",\"text\":\"Read More\",\"url\":\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\",\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"103px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/ladybirds-transparent-shell-reveals-how-it-folds-its-wings\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/gettyimages-578313682-800x533.jpg\",\"alt\":\"Ladybird\\u2019s transparent shell reveals how it folds its wings\",\"fullWidth\":false,\"width\":660,\"height\":440,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Ladybird’s transparent shell reveals how it folds its wings<\\/strong><\\/span><\\/h3>\"},{\"type\":\"button\",\"text\":\"Read More\",\"url\":\"http:\\/\\/mailpoet.info\\/ladybirds-transparent-shell-reveals-how-it-folds-its-wings\\/\",\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"103px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/plasma-stingray111-800x533.jpg\",\"alt\":\"Plasma jet engines that could take you from the ground to space\",\"fullWidth\":false,\"width\":660,\"height\":440,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Plasma jet engines that could take you from the ground to space<\\/strong><\\/span><\\/h3>\"},{\"type\":\"button\",\"text\":\"Read More\",\"url\":\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\",\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"103px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b956c5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"21px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #ffffff;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #ffffff;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #ffffff;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #ffffff;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\"},\"h3\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#b956c5\"},\"body\":{\"backgroundColor\":\"#efe7f0\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"2\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":true,\"featuredImagePosition\":\"aboveTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"116px\",\"lineHeight\":\"40px\",\"fontColor\":\"#b956c5\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"3px\",\"borderColor\":\"#ffffff\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContent\",\"terms\":[],\"withLayout\":false},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"1px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"120px\",\"lineHeight\":\"40px\",\"fontColor\":\"#b956c5\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"3px\",\"borderColor\":\"#efe7f0\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"container\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":true,\"featuredImagePosition\":\"aboveTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"posts\",\"offset\":0,\"terms\":[],\"search\":\"\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.7.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.7.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"#efe7f0\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/modular-style-stories/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(13,0,'Stripped RSS Style Layout','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f4f4f4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rss-simple-news\\/RSS-Logo-2.png\",\"alt\":\"RSS-Logo-2\",\"fullWidth\":true,\"width\":\"210px\",\"height\":\"90px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"24px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Website.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong><span style=\\\"color: #333333;\\\">Latest RSS Simple Posts<\\/span><\\/strong><\\/h3>\\n<p><span style=\\\"color: #999999;\\\">Week 23: 23\\/19\\/19<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"5\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more.\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#ececec\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f4f4f4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<p><span style=\\\"color: #808080;\\\"><strong>RSS Simple<\\/strong><\\/span><\\/p>\\n<p><span style=\\\"color: #808080; font-size: 11px;\\\"><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><span> | <\\/span><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/strong><\\/span><\\/p>\\n<p><span style=\\\"color: #808080; font-size: 11px;\\\"><strong><span>Add your postal address here!<\\/span><\\/strong><\\/span><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#3478f5\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#3478f5\",\"textDecoration\":\"none\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f4f4f4\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"3\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#efe7f0\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContent\",\"terms\":[],\"withLayout\":false},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more.\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#ececec\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"container\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.7.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.7.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/rss-simple-news/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(14,0,'One Full Post In An Email','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/not-so-medium\\/Not-So-Medium-Logo.png\",\"alt\":\"Not-So-Medium-Logo\",\"fullWidth\":false,\"width\":\"210px\",\"height\":\"90px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Website.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ebebeb\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong><em>Welcome to this week\'s post. <\\/em><\\/strong><\\/p>\\n<p><em>Every Friday, we send you the most interesting story of the week in full.<\\/em><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#d6d6d6\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"63px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"1\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"full\",\"titleFormat\":\"h1\",\"titleAlignment\":\"center\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"aboveText\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"aboveText\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"View this post online & share!\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ebebeb\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><em>Share this with your friends<\\/em><\\/strong><\\/p>\\n<p style=\\\"text-align: center;\\\"><em>We promise not to spam anyone, and we only send our great articles to any email addresses in our list. Promise!<\\/em><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"google-plus\",\"link\":\"http:\\/\\/plus.google.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Google-Plus.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Google Plus\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/LinkedIn.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Email.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#d6d6d6\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#2c2c2c\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Georgia\",\"fontSize\":\"18px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"1\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"full\",\"titleFormat\":\"h1\",\"titleAlignment\":\"center\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"aboveText\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"aboveText\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"View this post online & share!\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"container\":{\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.9.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.9.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"63px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/not-so-medium/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(15,0,'Wide Story Layout','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f0f0f0\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wide-story-layout\\/Wide-Logo.png\",\"alt\":\"Wide-Logo\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"37px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #808080;\\\">Our Latest Posts<\\/span><\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read The Post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#5ecd39\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Lucida\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#f0f0f0\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"30px\",\"borderColor\":\"#f0f0f0\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wide-story-layout\\/Wide-Footer.jpg\",\"alt\":\"Wide-Footer\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"721px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#5ecd39\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"21px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #ffffff;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #ffffff;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #ffffff;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #ffffff;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Lucida\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Lucida\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Lucida\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#5ecd39\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f0f0f0\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read The Post\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#5ecd39\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Lucida\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#f0f0f0\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"30px\",\"borderColor\":\"#f0f0f0\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read The Post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#5ecd39\",\"borderColor\":\"#000000\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Lucida\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"container\":{\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.11.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.11.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/wide-story-layout/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(16,0,'Industry Conference','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Logo.png\",\"alt\":\"Conf-Logo\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"150px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff; font-size: 11px; text-transform: uppercase; opacity: 0.5; letter-spacing: 3px;\\\">Get ready for the biggest email conference of the year<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Header-2.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"56px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Ticket.png\",\"alt\":\"Conf-Ticket\",\"fullWidth\":false,\"width\":\"339px\",\"height\":\"177px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"font-size: 42px;\\\"><strong><span style=\\\"color: #ffffff; line-height: 1.2; position: relative; top: -5px;\\\">Email Boston 2018<\\/span><\\/strong><\\/span><\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"133px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"right\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read the post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#b8291e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"147px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Georgia\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"oldest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"4px\",\"borderColor\":\"#dddddd\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Bottom-2.png\",\"alt\":\"Conf-Bottom\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"height\":\"34px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Industry-Coupon.png\",\"display\":\"fit\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"75px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">---<\\/span><\\/h3>\\n <h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Grab 20% off your tickets right now<\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">We\'re offering an exclusive 20% off tickets with this coupon code!<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"CouPon_Code\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#b8291e\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"3px\",\"borderRadius\":\"14px\",\"borderStyle\":\"solid\",\"width\":\"229px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"26px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"33px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"45px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Top.png\",\"alt\":\"Conf-Top\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"12px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"padding\":\"14px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"7px\",\"borderColor\":\"#e1e1e1\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Holding.jpg\",\"alt\":\"Conf-Holding\",\"fullWidth\":false,\"width\":\"1000px\",\"height\":\"667px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"46px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Check out this year\'s event<\\/strong><\\/h3>\\n <p>We\'ve ramped up everything this year for our conference, including amazing new speakers and guests, and a few surprises for everyone.<\\/p>\"},{\"type\":\"button\",\"text\":\"Buy a ticket here\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#b8291e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"147px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Georgia\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"padding\":\"1.5px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"7px\",\"borderColor\":\"#e1e1e1\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Bottom-2.png\",\"alt\":\"Conf-Bottom\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"height\":\"30px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"header\",\"text\":\"<p> <a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#8d8d8d\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}}},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #b8291e;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #b8291e;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #b8291e;\\\">Manage your subscription<\\/a><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arvo\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arvo\",\"fontSize\":\"26px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arvo\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#b8291e\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#222222\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"right\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#b8291e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"147px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Georgia\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"sortBy\":\"oldest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"4px\",\"borderColor\":\"#dddddd\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#b8291e\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"3px\",\"borderRadius\":\"14px\",\"borderStyle\":\"solid\",\"width\":\"229px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"26px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"padding\":\"1.5px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"7px\",\"borderColor\":\"#515151\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"75px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#8d8d8d\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/industry-conference/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(17,0,'Science Weekly','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Science-Logo.png\",\"alt\":\"Science-Logo\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"300px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Title-22.png\",\"alt\":\"Health-Mag-Title-2\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"214px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b1b6d1\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>The latest news from the world of science<\\/strong><\\/span><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"40px\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"2\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"borderColor\":\"#2b2d37\",\"borderWidth\":\"1px\",\"borderRadius\":\"21px\",\"borderStyle\":\"solid\",\"width\":\"114px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#b1b6d1\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-End-1.png\",\"alt\":\"Health-Mag-End\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Promo-Start.png\",\"alt\":\"Health-Mag-Promo-Start\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"text\",\"text\":\"<h2><strong>Download our app!<\\/strong><\\/h2>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed in odio dui. Duis et dolor nec erat dictum laoreet. Morbi dapibus turpis id eros viverra tempor. <\\/span><\\/p>\\n <p><span><\\/span><\\/p>\\n <p><span>Fusce et diam ac sapien posuere luctus. Etiam in vehicula metus, ac viverra elit. Duis diam lacus, molestie vel enim non, rutrum placerat massa. Suspendisse a elit tincidunt, egestas lacus at, maximus diam. <\\/span><\\/p>\\n <p><span><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Download Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"borderColor\":\"#2b2d37\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"144px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Phone.png\",\"alt\":\"Health-Mag-Phone\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"573px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Promo-End.png\",\"alt\":\"Health-Mag-Promo-End\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"height\":\"35px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Promo-Start.png\",\"alt\":\"Health-Mag-Promo-Start\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\">Keep In Touch With Us<\\/h3>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.11.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.11.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Promo-End.png\",\"alt\":\"Health-Mag-Promo-End\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"height\":\"26px\"}}},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #b1b6d1;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #b1b6d1;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #b1b6d1;\\\">Manage your subscription<\\/a><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\"},\"text\":{\"fontColor\":\"#d6d6d6\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#2b2d37\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"2\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2b2d37\",\"borderColor\":\"#2b2d37\",\"borderWidth\":\"1px\",\"borderRadius\":\"21px\",\"borderStyle\":\"solid\",\"width\":\"114px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"container\":{\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.11.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.11.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/science_weekly/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(18,0,'Newspaper Traditional','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f2f9f8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"28px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"font-size: 15px;\\\"><em><strong>[date:mtext][date:dordinal],[date:y]<\\/strong><\\/em><\\/h3>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #008080;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #008080;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f2f9f8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/newspaper-traditional\\/News-Logo.png\",\"alt\":\"News-Logo\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"100px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.12.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.12.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Website.png?mailpoet_version=3.12.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.12.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong>Local News<\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>Sports Updates & Scores<\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><strong>Business News<\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><strong>Check Out Our New Blog Posts! <\\/strong><\\/h1>\\n <p style=\\\"text-align: left;\\\"> <\\/p>\\n <p style=\\\"text-align: left;\\\">MailPoet can <span style=\\\"line-height: 1.6em; background-color: inherit;\\\"><em>automatically<\\/em> <\\/span><span style=\\\"line-height: 1.6em; background-color: inherit;\\\">send your new blog posts to your subscribers.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"line-height: 1.6em; background-color: inherit;\\\"><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"line-height: 1.6em; background-color: inherit;\\\">Below, you\'ll find three recent posts, which are displayed automatically, thanks to the <em>Automatic Latest Content<\\/em> widget, which can be found in the right sidebar, under <em>Content<\\/em>.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"line-height: 1.6em; background-color: inherit;\\\"><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"line-height: 1.6em; background-color: inherit;\\\">To edit the settings and styles of your post, simply click on a post below.<\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"double\",\"borderWidth\":\"7px\",\"borderColor\":\"#c6dbd8\"}}}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"left\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read the post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"double\",\"borderWidth\":\"7px\",\"borderColor\":\"#c6dbd8\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\",\"height\":\"28px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/newspaper-traditional\\/News-Logo.png\",\"alt\":\"News-Logo\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"100px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #458687;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #458687;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #458687;\\\">Manage your subscription<\\/a><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#c6dbd8\",\"height\":\"21px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Playfair Display\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#3d8076\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f2f9f8\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":true,\"imageFullWidth\":false,\"featuredImagePosition\":\"left\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"double\",\"borderWidth\":\"7px\",\"borderColor\":\"#c6dbd8\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"double\",\"borderWidth\":\"7px\",\"borderColor\":\"#c6dbd8\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/newspaper-traditional/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(19,0,'Clear News','[\"notification\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"27px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"11px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#e2973f\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/clear-news\\/News-Logo-1.png\",\"alt\":\"News-Logo\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"167px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: right;\\\"><span style=\\\"color: #808080;\\\"><strong>October 2018<\\/strong><\\/span><\\/h3>\"}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left; line-height: 1.3;\\\"><strong>Good Morning!<\\/strong><\\/h1>\\n <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce egestas nisl vel ante finibus fringilla ullamcorper non lectus. Aenean leo neque, egestas et lacus eu, viverra luctus nisi. Donec dapibus mauris at fringilla consequat. Cras sed porta nunc. Ut tincidunt luctus felis sed suscipit. Sed tristique faucibus fermentum.<\\/h3>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"24px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/clear-news\\/UEl2.gif\",\"alt\":\"UEl2\",\"fullWidth\":false,\"width\":\"360px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#e2973f\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2><strong>Today\'s Top Stories<\\/strong><\\/h2>\"}]}]},{\"type\":\"automatedLatestContentLayout\",\"withLayout\":true,\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":true,\"featuredImagePosition\":\"left\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e2973f\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"110px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"context\":\"automatedLatestContentLayout.readMoreButton\"},\"sortBy\":\"newest\",\"showDivider\":false,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"context\":\"automatedLatestContentLayout.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#e2973f\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2><strong>We cover all types of news<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"World\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e23f3f\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Business\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#50b6ce\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Politics\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#506dce\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Sports\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e1bc2d\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Science\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#a650ce\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Health\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#64b03c\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Family\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#278f6e\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Arts\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#7c5e5e\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Local\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#4d4d4d\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/clear-news\\/News-Crossword.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: right;\\\"><span style=\\\"color: #ffffff;\\\">The Friday Crossword<\\/span><\\/h2>\\n <p style=\\\"text-align: right;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum vitae ornare elit. Duis laoreet justo sed fringilla maximus. Aenean pharetra nec risus a vestibulum.<\\/span><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get started\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e2973f\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"110px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"right\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"22px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"34.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#e2973f\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/clear-news\\/News-Logo-1.png\",\"alt\":\"News-Logo\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"167px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><\\/strong><\\/p>\\n <p style=\\\"text-align: center;\\\"><strong><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/strong><\\/p>\"},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Add your postal address!<\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"social\",\"iconSet\":\"default\",\"icons\":[]}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\"},\"link\":{\"fontColor\":\"#e2973f\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":true,\"featuredImagePosition\":\"left\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#e2973f\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"110px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":false,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#4d4d4d\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"34.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#e2973f\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#e2973f\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"titleOnly\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":true,\"featuredImagePosition\":\"centered\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"http:\\/\\/mailpoet.info\\/ladybirds-transparent-shell-reveals-how-it-folds-its-wings\\/\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#e2973f\",\"borderColor\":\"#e2973f\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"110px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":false,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"posts\",\"offset\":0,\"terms\":[],\"search\":\"\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"11px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#e2973f\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/clear-news/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(20,0,'Dog Food','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Logo.png\",\"alt\":\"Dog-Logo\",\"fullWidth\":false,\"width\":\"42px\",\"height\":\"91px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"31px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"line-height: 1.2em;\\\"><strong>Thanks for buying your dog food from us<\\/strong><\\/h1>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Header-1024x409.jpg\",\"alt\":\"Dog-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"511px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Here\'s some other pawsome things to try... <\\/strong><\\/h2>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Product-1.jpg\",\"alt\":\"Dog-Product-1\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Dog Jumper<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex.<\\/span><\\/p>\\n<p><span><strong><\\/strong><\\/span><\\/p>\\n<p><em><strong>$19.99<\\/strong><\\/em><\\/p>\"},{\"type\":\"button\",\"text\":\"Check it out\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\",\"borderColor\":\"#000000\",\"borderWidth\":\"3px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"113px\",\"lineHeight\":\"28px\",\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Product-2.jpg\",\"alt\":\"Dog-Product-2\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Dog Socks<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><span><em><strong>$19.99<\\/strong><\\/em><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Check it out\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\",\"borderColor\":\"#000000\",\"borderWidth\":\"3px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"113px\",\"lineHeight\":\"28px\",\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Product-3.jpg\",\"alt\":\"Dog-Product-3\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Glow Collar<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex.<\\/span><\\/p>\\n<p><em><\\/em><\\/p>\\n<p><em><strong>$19.99<\\/strong><\\/em><\\/p>\"},{\"type\":\"button\",\"text\":\"Check it out\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\",\"borderColor\":\"#000000\",\"borderWidth\":\"3px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"113px\",\"lineHeight\":\"28px\",\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#000000\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"45px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong><\\/strong><span style=\\\"color: #ffffff;\\\">Our Guarantee<\\/span><\\/h3>\\n<p><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex. Aliquam mollis metus ac nisl luctus pulvinar. Donec tincidunt pharetra sem, nec eleifend augue. Morbi id nunc commodo, tempor erat et, pretium neque. Vivamus ante sapien, consequat vitae ante quis, facilisis pellentesque mi. Praesent at scelerisque leo. Donec elementum mi consequat, ultrices lorem nec, vestibulum arcu. Aenean id libero vitae felis consequat maximus<\\/span><\\/p>\\n<p><span style=\\\"color: #ffffff;\\\"><em><\\/em><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#d4d4d4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#d4d4d4\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><strong><em><span style=\\\"color: #000000;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #000000;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #000000;\\\">Manage your subscription<\\/a><\\/span><\\/em><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#d4d4d4\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Check it out\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\",\"borderColor\":\"#000000\",\"borderWidth\":\"3px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"113px\",\"lineHeight\":\"28px\",\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"#d4d4d4\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/dog-food/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(21,0,'Abandoned Cart – Kids','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#c3e1e8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#c3e1e8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Logo.png\",\"alt\":\"Kids-Clothing-Logo\",\"fullWidth\":true,\"width\":\"250px\",\"height\":\"121px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"google-plus\",\"link\":\"http:\\/\\/plus.google.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Google-Plus.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Google Plus\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #4e4e4e;\\\"><strong>Boys Clothes<\\/strong><\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #4e4e4e;\\\"><strong>Girls Clothes<\\/strong><\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #4e4e4e;\\\"><strong>Toys & Games<\\/strong><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#9cd1e1\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"80px\"}}},{\"type\":\"text\",\"text\":\"<h1><strong>Wait!<\\/strong><\\/h1><h3>You\\u2019ve left something in your cart!<\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #4e4e4e;\\\"><strong>Don\\u2019t worry, we saved it for you\\u2026<\\/strong><\\/span><\\/h2>\"}]}]},{\"type\":\"abandonedCartContent\",\"withLayout\":true,\"amount\":\"2\",\"contentType\":\"product\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"titlePosition\":\"aboveExcerpt\",\"featuredImagePosition\":\"left\",\"pricePosition\":\"below\",\"readMoreType\":\"none\",\"readMoreText\":\"\",\"readMoreButton\":[],\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#aaaaaa\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"padding\":\"13px\"}},\"context\":\"abandonedCartContent.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Go To Cart\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"borderWidth\":\"0px\",\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"lineHeight\":\"40px\",\"textAlign\":\"center\",\"width\":\"154px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#fceba5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>YOU MIGHT ALSO LIKE\\u2026<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Image-3.jpg\",\"alt\":\"Kids-Clothing-Image-3\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><strong>Cherry Dress<\\/strong><\\/p><p><span>$10.99<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"View\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"borderWidth\":\"0px\",\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"lineHeight\":\"40px\",\"textAlign\":\"left\",\"width\":\"90px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Image-2.jpg\",\"alt\":\"Kids-Clothing-Image-2\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><strong>Red T-Shirt<\\/strong><\\/p><p><span>$9.49<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"View\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"borderWidth\":\"0px\",\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"lineHeight\":\"40px\",\"textAlign\":\"left\",\"width\":\"90px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Image-4.jpg\",\"alt\":\"Kids-Clothing-Image-4\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><strong>Pink Dance Dress<\\/strong><\\/p><p><span>$11.99<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"View\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"borderWidth\":\"0px\",\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"lineHeight\":\"40px\",\"textAlign\":\"left\",\"width\":\"90px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Footer.jpg\",\"alt\":\"Kids-Clothing-Footer\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"107px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"#c3e1e8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"display\":\"scale\",\"src\":null},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Logo-Footer-150x61.png\",\"alt\":\"Kids-Clothing-Logo-Footer\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"61px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #333333;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #333333;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #333333;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"lineHeight\":\"1.6\"},\"h1\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"40px\",\"lineHeight\":\"1.6\"},\"h2\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\",\"lineHeight\":\"1.6\"},\"h3\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\",\"lineHeight\":\"1.6\"},\"link\":{\"fontColor\":\"#9bd2e0\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#c3e1e8\"}},\"blockDefaults\":{\"abandonedCartContent\":{\"amount\":\"2\",\"withLayout\":true,\"contentType\":\"product\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h2\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"left\",\"pricePosition\":\"below\",\"readMoreType\":\"none\",\"readMoreText\":\"\",\"readMoreButton\":[],\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"abandonedCartContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"abandonedCartContent\",\"titlePosition\":\"aboveExcerpt\"},\"automatedLatestContent\":{\"amount\":\"5\",\"authorPrecededBy\":\"Author:\",\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"categoriesPrecededBy\":\"Categories:\",\"contentType\":\"post\",\"displayType\":\"excerpt\",\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#aaaaaa\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"padding\":\"13px\"}}},\"featuredImagePosition\":\"belowTitle\",\"imageFullWidth\":false,\"inclusionType\":\"include\",\"readMoreButton\":{\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"lineHeight\":\"40px\",\"textAlign\":\"center\",\"width\":\"180px\"}},\"text\":\"Read more\",\"url\":\"[postLink]\"},\"readMoreText\":\"Read more\",\"readMoreType\":\"button\",\"showAuthor\":\"no\",\"showCategories\":\"no\",\"showDivider\":true,\"sortBy\":\"newest\",\"titleAlignment\":\"left\",\"titleFormat\":\"h1\",\"titleIsLink\":false},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"authorPrecededBy\":\"Author:\",\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"categoriesPrecededBy\":\"Categories:\",\"contentType\":\"post\",\"displayType\":\"excerpt\",\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#aaaaaa\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"padding\":\"13px\"}}},\"featuredImagePosition\":\"alternate\",\"imageFullWidth\":false,\"inclusionType\":\"include\",\"readMoreButton\":{\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"lineHeight\":\"40px\",\"textAlign\":\"center\",\"width\":\"180px\"}},\"text\":\"Read more\",\"url\":\"[postLink]\"},\"readMoreText\":\"Read more\",\"readMoreType\":\"button\",\"showAuthor\":\"no\",\"showCategories\":\"no\",\"showDivider\":true,\"sortBy\":\"newest\",\"titleAlignment\":\"left\",\"titleFormat\":\"h1\",\"titleIsLink\":false,\"withLayout\":true},\"button\":{\"styles\":{\"block\":{\"backgroundColor\":\"#9bd2e0\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"borderWidth\":\"0px\",\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"lineHeight\":\"40px\",\"textAlign\":\"center\",\"width\":\"154px\"}},\"text\":\"Go To Cart\",\"url\":\"\",\"type\":\"button\"},\"container\":[],\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#aaaaaa\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"padding\":\"13px\"}}},\"footer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"}},\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\"},\"posts\":{\"amount\":\"10\",\"authorPrecededBy\":\"Author:\",\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"categoriesPrecededBy\":\"Categories:\",\"contentType\":\"post\",\"displayType\":\"excerpt\",\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#aaaaaa\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"padding\":\"13px\"}}},\"featuredImagePosition\":\"belowTitle\",\"imageFullWidth\":false,\"inclusionType\":\"include\",\"postStatus\":\"publish\",\"readMoreButton\":{\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"lineHeight\":\"40px\",\"textAlign\":\"center\",\"width\":\"180px\"}},\"text\":\"Read more\",\"url\":\"[postLink]\"},\"readMoreText\":\"Read more\",\"readMoreType\":\"link\",\"showAuthor\":\"no\",\"showCategories\":\"no\",\"showDivider\":true,\"sortBy\":\"newest\",\"titleAlignment\":\"left\",\"titleFormat\":\"h1\",\"titleIsLink\":false},\"products\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"product\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"pricePosition\":\"below\",\"readMoreType\":\"link\",\"readMoreText\":\"Buy now\",\"readMoreButton\":{\"text\":\"Buy now\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"height\":\"32px\",\"iconType\":\"facebook\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.7.1\",\"link\":\"http:\\/\\/www.facebook.com\",\"text\":\"Facebook\",\"type\":\"socialIcon\",\"width\":\"32px\"},{\"height\":\"32px\",\"iconType\":\"twitter\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.7.1\",\"link\":\"http:\\/\\/www.twitter.com\",\"text\":\"Twitter\",\"type\":\"socialIcon\",\"width\":\"32px\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"80px\"}},\"type\":\"spacer\"},\"header\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"}},\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\"},\"woocommerceHeading\":{\"contents\":{\"new_account\":\"New Order: #0001\",\"processing_order\":\"Thank you for your order\",\"completed_order\":\"Thanks for shopping with us\",\"customer_note\":\"A note has been added to your order\"}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/kids-clothing/thumbnail.20201028.jpg',1,NULL,'2021-09-06 16:26:01'),(22,0,'Rock Band','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#060d13\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rock-band\\/RockBand-Header-2.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#060d13\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Courier New\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#7acff0\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"315px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"48px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"29px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #7acff0;\\\">Free track download<\\/span><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #d4d4d4;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Download now for free\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#152533\",\"borderColor\":\"#7acff0\",\"borderWidth\":\"2px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"18.5px\",\"borderStyle\":\"double\",\"borderWidth\":\"7px\",\"borderColor\":\"#1c2f40\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">We\'ve been busy in the studio<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #d4d4d4;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rock-band\\/RockBand-Albums-2.jpg\",\"alt\":\"RockBand-Albums-2\",\"fullWidth\":false,\"width\":\"250px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Magnus Opium<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Buy now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#7acff0\",\"borderColor\":\"#7acff0\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"83px\",\"lineHeight\":\"32px\",\"fontColor\":\"#1c2f40\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rock-band\\/RockBand-Albums-1.jpg\",\"alt\":\"RockBand-Albums-1\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Skeletal Bones<\\/p>\"},{\"type\":\"button\",\"text\":\"Buy now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#7acff0\",\"borderColor\":\"#7acff0\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"83px\",\"lineHeight\":\"32px\",\"fontColor\":\"#1c2f40\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rock-band\\/RockBand-Albums-3.jpg\",\"alt\":\"RockBand-Albums-3\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Blinded by Vision<\\/p>\"},{\"type\":\"button\",\"text\":\"Buy now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#7acff0\",\"borderColor\":\"#7acff0\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"83px\",\"lineHeight\":\"32px\",\"fontColor\":\"#1c2f40\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rock-band\\/RockBand-Tours.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1c2f40\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"37px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: right;\\\">New Tour Dates<\\/h1>\\n <p style=\\\"text-align: right;\\\">14th March - London, UK<\\/p>\\n <p style=\\\"text-align: right;\\\">15th March - Leeds, UK<\\/p>\\n <p style=\\\"text-align: right;\\\">16th March - Birmingham, UK<\\/p>\\n <p style=\\\"text-align: right;\\\">19th March - Manchester, UK<\\/p>\\n <p style=\\\"text-align: right;\\\">21st March - Glasgow, UK<\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"144px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\">Bounce Rate<\\/h3>\"},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#aaaaaa\",\"fontFamily\":\"Courier New\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#7acff0\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#7acff0\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#060d13\"},\"body\":{\"backgroundColor\":\"#060d13\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Buy now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#7acff0\",\"borderColor\":\"#7acff0\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"83px\",\"lineHeight\":\"32px\",\"fontColor\":\"#1c2f40\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"18.5px\",\"borderStyle\":\"double\",\"borderWidth\":\"7px\",\"borderColor\":\"#1c2f40\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#aaaaaa\",\"fontFamily\":\"Courier New\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#7acff0\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Courier New\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#7acff0\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/rock-band/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(23,0,'Wine City (with coupon)','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"37px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wine-city\\/Wine-Logo.png\",\"alt\":\"Wine-Logo\",\"fullWidth\":false,\"width\":\"136px\",\"height\":\"67px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"31px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #6d6d6d;\\\"><strong>Red Wine<\\/strong><\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #6d6d6d;\\\"><strong>White Wine<\\/strong><\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #6d6d6d;\\\"><strong>Rose Wine<\\/strong><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wine-city\\/Wine-Header-1.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Have a drink on us<\\/strong><\\/span><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"231px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"34px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #6d6d6d;\\\"><strong>You\'re our VIP - now it\'s time to celebrate! <\\/strong><\\/span><\\/h2>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #6d6d6d;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex. Aliquam mollis metus ac nisl luctus pulvinar. Donec tincidunt pharetra sem, nec eleifend augue.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"CoUponCoDE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#6d6d6d\",\"borderWidth\":\"2px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"219px\",\"lineHeight\":\"50px\",\"fontColor\":\"#6d6d6d\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"17px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #6d6d6d;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #6d6d6d;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #6d6d6d;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/><span style=\\\"color: #6d6d6d;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"CoUponCoDE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#6d6d6d\",\"borderWidth\":\"2px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"219px\",\"lineHeight\":\"50px\",\"fontColor\":\"#6d6d6d\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"17px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"231px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/wine-city/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(24,0,'Abandoned Cart – Fitness','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e6e1e5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fitness\\/Fitness-Logo-1.jpg\",\"alt\":\"Fitness-Logo-1\",\"fullWidth\":true,\"width\":\"180px\",\"height\":\"96px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e6e1e5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e6e1e5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Get back in the game<\\/strong><\\/h1>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fitness\\/Fitness-Header.jpg\",\"alt\":\"Fitness-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"696px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>You\'ve left something in your cart...<\\/strong><\\/h3>\"}]}]},{\"type\":\"abandonedCartContent\",\"withLayout\":true,\"amount\":\"2\",\"contentType\":\"product\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"full\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"titlePosition\":\"aboveExcerpt\",\"featuredImagePosition\":\"left\",\"pricePosition\":\"hidden\",\"readMoreType\":\"none\",\"readMoreText\":\"\",\"readMoreButton\":[],\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"context\":\"abandonedCartContent.divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Recover Cart\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#343434\",\"borderWidth\":\"3px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"146px\",\"lineHeight\":\"37px\",\"fontColor\":\"#343434\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#afd147\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>Still interested?<\\/strong><\\/h3>\\n<p style=\\\"text-align: center;\\\"><strong>Here\'s 20% off your order if you complete it right now. We\'re nice like that.<\\/strong><\\/p>\"},{\"type\":\"button\",\"text\":\"COUPONCODE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#afd147\",\"borderColor\":\"#56741d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"219px\",\"lineHeight\":\"50px\",\"fontColor\":\"#56741d\",\"fontFamily\":\"Courier New\",\"fontSize\":\"26px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fitness\\/Fitness-Logo-Footer-1.png\",\"alt\":\"Fitness-Logo-Footer-1\",\"fullWidth\":false,\"width\":\"180px\",\"height\":\"52px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\">Address Line 1, Address Line 2, City, Country<\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\"><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #999999;\\\">Unsubscribe<\\/a><span> <\\/span>|<span> <\\/span><a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #999999;\\\">Manage your subscription<\\/a><\\/strong><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"lineHeight\":\"1.6\"},\"h1\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"40px\",\"lineHeight\":\"1.6\"},\"h2\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\",\"lineHeight\":\"1.6\"},\"h3\":{\"fontColor\":\"#4e4e4e\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\",\"lineHeight\":\"1.6\"},\"link\":{\"fontColor\":\"#3c3c3c\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#222222\"}},\"blockDefaults\":{\"abandonedCartContent\":{\"amount\":\"2\",\"withLayout\":true,\"contentType\":\"product\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"full\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"left\",\"pricePosition\":\"hidden\",\"readMoreType\":\"none\",\"readMoreText\":\"\",\"readMoreButton\":[],\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"abandonedCartContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"abandonedCartContent\",\"titlePosition\":\"aboveExcerpt\"},\"automatedLatestContent\":{\"amount\":\"5\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Recover Cart\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#343434\",\"borderWidth\":\"3px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"146px\",\"lineHeight\":\"37px\",\"fontColor\":\"#343434\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"container\":[],\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"products\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"product\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"pricePosition\":\"below\",\"readMoreType\":\"link\",\"readMoreText\":\"Buy now\",\"readMoreButton\":{\"text\":\"Buy now\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png?mailpoet_version=3.7.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png?mailpoet_version=3.7.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}},\"woocommerceHeading\":{\"contents\":{\"new_account\":\"New Order: #0001\",\"processing_order\":\"Thank you for your order\",\"completed_order\":\"Thanks for shopping with us\",\"customer_note\":\"A note has been added to your order\"}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/fitness/thumbnail.20201028.jpg',1,NULL,'2021-09-06 16:26:01'),(25,0,'Motor','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"24px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #d52a2a;\\\"><strong>Welcome to Vector Motors<\\/strong><\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 11px;\\\"><span style=\\\"color: #d52a2a;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"24px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}]}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/motor\\/Car-Header-2.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#d52a2a\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/motor\\/Car-Header-logo-1.png\",\"alt\":\"Car-Header-logo-1\",\"fullWidth\":false,\"width\":\"167.5px\",\"height\":\"349px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"118px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"font-size: 35px; line-height: 40px; text-align: left; border-left: 10px solid #d52a2a; margin-left: 20px; padding-left: 20px;\\\"><strong><span style=\\\"color: #ffffff;\\\">Welcome to the club<\\/span><\\/strong><\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"72px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #d52a2a;\\\">You\'ve bought the car, here\'s what happens next.<\\/span><\\/strong><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex. Aliquam mollis metus ac nisl luctus pulvinar. Donec tincidunt pharetra sem, nec eleifend augue. Morbi id nunc commodo, tempor erat et, pretium neque. <\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span><\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span>Vivamus ante sapien, consequat vitae ante quis, facilisis pellentesque mi. Praesent at scelerisque leo. Donec elementum mi consequat, ultrices lorem nec, vestibulum arcu. Aenean id libero vitae felis consequat maximus.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1><strong>We\'re here to help<\\/strong><\\/h1>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex. Aliquam mollis metus ac nisl luctus pulvinar. Donec tincidunt pharetra sem, nec eleifend augue. Morbi id nunc commodo, tempor erat et, pretium neque.<\\/p>\\n <p><\\/p>\\n <p><strong><a href=\\\"\\\">Get in touch with us here<\\/a><\\/strong><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\",\"height\":\"113px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"42px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Servicing Plans\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#d52a2a\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"176px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/motor\\/Car-Wheel.jpg\",\"alt\":\"Car-Wheel\",\"fullWidth\":true,\"width\":\"600px\",\"height\":\"560px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>We\'ll be in touch soon with updates<\\/strong><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elementum ex. Aliquam mollis metus ac nisl luctus pulvinar. Donec tincidunt pharetra sem, nec eleifend augue. Morbi id nunc commodo, tempor erat et, pretium neque.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #d52a2a;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #d52a2a;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #d52a2a;\\\">Manage your subscription<\\/a><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/motor\\/Car-Footer.jpg\",\"alt\":\"Car-Footer\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"275px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#d52a2a\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#d52a2a\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#e3e3e3\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Servicing Plans\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#d52a2a\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"176px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"18.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"5px\",\"borderColor\":\"#d52a2a\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"118px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#d52a2a\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/motor/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(26,0,'Avocado','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f3f8f3\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Logo-2.png\",\"alt\":\"Avocado-Logo-2\",\"fullWidth\":false,\"width\":\"212px\",\"height\":\"89px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"33px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><strong>Has to be fresh<\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ddeeba\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"58px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Holy Guacamole!<\\/strong><\\/h1>\\n<h2 style=\\\"text-align: center;\\\">Your monthly avocado<\\/h2>\\n<h2 style=\\\"text-align: center;\\\">delivery starts right now.<\\/h2>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Header-1.jpg\",\"alt\":\"Avocado-Header-1\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"644px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Recipe.jpg\",\"alt\":\"Avocado-Recipe\",\"fullWidth\":true,\"width\":\"600px\",\"height\":\"890px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"135px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>A quick and easy recipe to get you started...<\\/strong><\\/h3>\\n<p style=\\\"text-align: left;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer blandit tortor nec eleifend maximus. Nulla est lectus, tincidunt quis molestie vitae, suscipit non orci.<\\/p>\"},{\"type\":\"button\",\"text\":\"Check it out\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#9ecd2e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"28px\",\"borderStyle\":\"solid\",\"width\":\"111px\",\"lineHeight\":\"36px\",\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#9ecd2e\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333;\\\"><\\/span><\\/strong><\\/p>\\n<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #333333;\\\"><\\/span><\\/strong><strong><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/span><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ddeeba\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"58px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Got a friend that hass to have this too ?<\\/strong><\\/h2>\\n<h2 style=\\\"text-align: center;\\\"><\\/h2>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Coupon.jpg\",\"alt\":\"Avocado-Coupon\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"382px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#dbefb4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Send them your exclusive coupon code now and they\'ll receive 50% off their next order, and you\'ll get your next box for free! <\\/p>\"},{\"type\":\"button\",\"text\":\"AVOCADOSRULE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#dbefb4\",\"borderColor\":\"#3d3d3d\",\"borderWidth\":\"3px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"254px\",\"lineHeight\":\"50px\",\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#dbefb4\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#f3f8f3\",\"height\":\"44px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #9ecd2e;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #9ecd2e;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #9ecd2e;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\"},\"h3\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#9ecd2e\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f3f8f3\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"AVOCADOSRULE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#dbefb4\",\"borderColor\":\"#3d3d3d\",\"borderWidth\":\"3px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"254px\",\"lineHeight\":\"50px\",\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"2px\",\"borderColor\":\"#9ecd2e\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.7.3\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"33px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/avocado/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(27,0,'Book store (with coupon)','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#125674\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Logo.png\",\"alt\":\"Book-Logo\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"48px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#125674\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">Turn more pages this weekend...<\\/span><\\/strong><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Just to say thanks, here\'s a small gift from us to you.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"71px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Body-2.png\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"21px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #5094ad;\\\"><strong>Read more every week<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: center;\\\"><strong>Your free gift!<\\/strong><\\/h2>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Body-2.png\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"2px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#125674\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Body-2.png\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, adipiscing elit. Fusce mollis orci justo,<\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span>commodo mattis nisi vitae. Sed aliquam, ex ac lacinia tempus,<\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span>enim urna luctus odio, at leo ante non.<\\/span><\\/p>\"},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>20% off all books<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"Coupon_Code\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#125674\",\"borderWidth\":\"3px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#125674\",\"fontFamily\":\"Courier New\",\"fontSize\":\"26px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Image-Wide-2.png\",\"alt\":\"Book-Image-Wide\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#cdc391\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#cdc391\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#125674\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"29px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#125674\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Logo.png\",\"alt\":\"Book-Logo\",\"fullWidth\":false,\"width\":\"96px\",\"height\":\"48px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #cdc391;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #cdc391;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #cdc391;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #ffffff;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #ffffff;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #ffffff;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Noticia Text\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Playfair Display\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Playfair Display\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#125674\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Coupon_Code\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#125674\",\"borderWidth\":\"3px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#125674\",\"fontFamily\":\"Courier New\",\"fontSize\":\"26px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"2px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#125674\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/book-store-with-coupon/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(28,0,'Flowers (with coupon)','[\"woocommerce\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eae5e5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #000000;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #000000;\\\">View this email in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flowers-Logo.png\",\"alt\":\"Flowers-Logo\",\"fullWidth\":false,\"width\":\"110px\",\"height\":\"180px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"44px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flowers-Header.jpg\",\"alt\":\"Flowers-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"850px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Just for you.<\\/strong><\\/h1>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>Welcome to our flower store - as a token of our appreciation for you signing up,<\\/strong><\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>here\'s a little gift from us for your next order.<\\/strong><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"CoUpOn_Code\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#292929\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"26px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333; font-size: 11px;\\\"><strong><\\/strong><strong>10% off your next order with us. Terms and Conditions apply.<\\/strong><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"45px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>A little inspiration to get you started...<\\/strong><\\/h2>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong>New flowers delivered<\\/strong><\\/h3>\"},{\"type\":\"text\",\"text\":\"<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut rutrum et lacus a dignissim. Curabitur id nisi malesuada, pharetra massa ut, bibendum lacus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Buy Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"85px\",\"lineHeight\":\"36px\",\"fontColor\":\"#292929\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flower-1.jpg\",\"alt\":\"Flower-1\",\"fullWidth\":false,\"width\":\"730px\",\"height\":\"604px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flower-2.jpg\",\"alt\":\"Flower-2\",\"fullWidth\":false,\"width\":\"730px\",\"height\":\"604px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong>Save with a subscription<\\/strong><\\/h3>\"},{\"type\":\"text\",\"text\":\"<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut rutrum et lacus a dignissim. Curabitur id nisi malesuada, pharetra massa ut, bibendum lacus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Buy Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"85px\",\"lineHeight\":\"36px\",\"fontColor\":\"#292929\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong>Collect from our store<\\/strong><\\/h3>\"},{\"type\":\"text\",\"text\":\"<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut rutrum et lacus a dignissim. Curabitur id nisi malesuada, pharetra massa ut, bibendum lacus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Buy Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"85px\",\"lineHeight\":\"36px\",\"fontColor\":\"#292929\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flower-3.jpg\",\"alt\":\"Flower-3\",\"fullWidth\":false,\"width\":\"730px\",\"height\":\"604px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eae5e5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #b3748a;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #b3748a;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #b3748a;\\\">Manage your subscription<\\/a><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#e0a9bc\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eae5e5\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Buy Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e0a9bc\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"85px\",\"lineHeight\":\"36px\",\"fontColor\":\"#292929\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"392px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/flowers-with-coupon/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:01'),(29,0,'Newsletter: Blank 1 Column','[\"standard\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Let\'s Get Started! <\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>It\'s time to design your newsletter! In the right sidebar, you\'ll find 4 menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/newsletter-blank-1-column/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(30,0,'Newsletter: Blank 1:2 Column','[\"standard\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Let\'s Get Started!<\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>It\'s time to design your newsletter! In the right sidebar, you\'ll find 4 menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2>This template has...<\\/h2>\"},{\"type\":\"text\",\"text\":\"<p>In the right sidebar, you can add these layout blocks to your email:<\\/p>\\n<ul>\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2>... a 2-column layout.<\\/h2>\"},{\"type\":\"text\",\"text\":\"<p><span style=\\\"line-height: 25.6px;\\\">You can change a layout\'s background color by clicking on the settings icon on the right edge of the Designer. Simply hover over this area to see the Settings (gear) icon.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/newsletter-blank-1-2-column/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(31,0,'Newsletter: Blank 1:2:1 Column','[\"standard\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Let\'s Get Started!<\\/strong><\\/h1>\\n<p>It\'s time to design your newsletter! In the right sidebar, you\'ll find four menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2>This template has...<\\/h2>\"},{\"type\":\"text\",\"text\":\"<p>In the right sidebar, you can add layout blocks to your email:<\\/p>\\n<ul>\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2>... a 2-column layout.<\\/h2>\"},{\"type\":\"text\",\"text\":\"<p>You can change a layout\'s background color by clicking on the settings icon on the right edge of the Designer. Simply hover over this area to see the Settings (gear) icon.<\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"font-weight: 600;\\\">Let\'s end with a single column. <\\/span><\\/h3>\\n<p style=\\\"line-height: 25.6px;\\\">In the right sidebar, you can add these layout blocks to your email:<\\/p>\\n<p style=\\\"line-height: 25.6px;\\\"><\\/p>\\n<ul style=\\\"line-height: 25.6px;\\\">\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/newsletter-blank-1-2-1-column/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(32,0,'Newsletter: Blank 1:3 Column','[\"standard\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>Let\'s Get Started! <\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>It\'s time to design your newsletter! In the right sidebar, you\'ll find four menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>This template...<\\/h3>\"},{\"type\":\"text\",\"text\":\"<p>In the right sidebar, you can add layout blocks to your newsletter.<\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>... has a...<\\/h3>\"},{\"type\":\"text\",\"text\":\"<p>You have the choice of:<\\/p>\\n<ul>\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>3-column layout.<\\/h3>\"},{\"type\":\"text\",\"text\":\"<p>You can add as many layout blocks as you want!<\\/p>\"},{\"type\":\"text\",\"text\":\"\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/newsletter-blank-1-3-column/thumbnail.20190930.jpg',1,NULL,'2021-09-06 16:26:02'),(33,0,'Simple Text','[\"standard\",\"blank\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png\",\"alt\":\"Fake logo\",\"fullWidth\":false,\"width\":\"598px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\">Hi [subscriber:firstname | default:subscriber],<\\/p>\\n<p style=\\\"text-align: left;\\\"><\\/p>\\n<p style=\\\"text-align: left;\\\">In MailPoet, you can write emails in plain text, just like in a regular email. This can make your email newsletters more personal and attention-grabbing.<\\/p>\\n<p style=\\\"text-align: left;\\\"><\\/p>\\n<p style=\\\"text-align: left;\\\">Is this too simple? You can still style your text with basic formatting, like <strong>bold<\\/strong> or <em>italics.<\\/em><\\/p>\\n<p style=\\\"text-align: left;\\\"><\\/p>\\n<p style=\\\"text-align: left;\\\">Finally, you can also add a call-to-action button between 2 blocks of text, like this:<\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}},{\"type\":\"button\",\"text\":\"It\'s time to take action!\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}},{\"type\":\"text\",\"text\":\"<p>Thanks for reading. See you soon!<\\/p>\\n<p> <\\/p>\\n<p><strong><em>The MailPoet Team<\\/em><\\/strong><\\/p>\"},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/simple-text/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(34,0,'Take a Hike','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/header.jpg\",\"alt\":\"header\",\"fullWidth\":true,\"width\":\"1320px\",\"height\":\"483px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p>Hi [subscriber:firstname | default:explorer]<\\/p>\\n <p><\\/p>\\n <p>Aliquam feugiat nisl eget eleifend congue. Nullam neque tellus, elementum vel elit dictum, tempus sagittis nunc. Phasellus quis commodo odio. Vestibulum vitae mi vel quam rhoncus egestas eget vitae eros. <\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#843c15\",\"height\":\"40px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1><strong>How to plan your hiking route<\\/strong><\\/h1>\\n <p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aliquam dictum urna ac lacus dapibus rhoncus.<\\/p>\"},{\"type\":\"button\",\"text\":\"Read More\",\"url\":\"https:\\/\\/www.google.co.uk\",\"styles\":{\"block\":{\"backgroundColor\":\"#64a1af\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"150px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/map.jpg\",\"alt\":\"map\",\"fullWidth\":false,\"width\":\"330px\",\"height\":\"227px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#843c15\",\"height\":\"40px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/boots.jpg\",\"alt\":\"boots\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2><strong>Tried & tested: Our favourite walking boots<\\/strong><\\/h2>\\n <p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. <\\/p>\"},{\"type\":\"button\",\"text\":\"See Reviews\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#64a1af\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"150px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#843c15\",\"height\":\"40px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>Hikers Gallery<\\/strong><\\/h3>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/gallery3.jpg\",\"alt\":\"gallery3\",\"fullWidth\":true,\"width\":\"1000px\",\"height\":\"750px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/gallery1-300x225.jpg\",\"alt\":\"gallery1\",\"fullWidth\":true,\"width\":\"300px\",\"height\":\"225px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/gallery2-1.jpg\",\"alt\":\"gallery2\",\"fullWidth\":true,\"width\":\"1000px\",\"height\":\"750px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Edit this to insert text<\\/p>\"},{\"type\":\"button\",\"text\":\"View More Photos\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#64a1af\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"214px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#843c15\",\"height\":\"40px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>Hiking goes social...<\\/strong><\\/h3>\"},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"google-plus\",\"link\":\"http:\\/\\/plus.google.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Google-Plus.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Google Plus\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#843c15\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#64a1af\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#64a1af\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#64a1af\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#4f230c\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#423c39\",\"fontFamily\":\"Courier New\",\"fontSize\":\"24px\"},\"h2\":{\"fontColor\":\"#265f6d\",\"fontFamily\":\"Courier New\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#423c39\",\"fontFamily\":\"Courier New\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#843c15\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#843c15\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/take_a_hike/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(35,0,'News Day','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#f2f2f2\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/news_day\\/News-Outlet-Title-2.jpg\",\"alt\":\"News-Outlet-Title-2\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #2ca5d2;\\\"><strong>Top Story<\\/strong><\\/span><\\/h1>\"},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><strong>Plasma jet engines that could take you from the ground to space<\\/strong><\\/h2>\"},{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/news_day\\/plasma-stingray111-800x533.jpg\",\"alt\":\"Plasma jet engines that could take you from the ground to space\",\"fullWidth\":false,\"width\":\"413.28125px\",\"height\":440,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p class=\\\"mailpoet_wp_post\\\">FORGET fuel-powered jet engines. We\\u2019re on the verge of having aircraft that can fly from the ground up to the edge of space using air and electricity alone. Traditional jet engines create thrust by mixing compressed air with fuel and igniting it. The burning mixture expands rapidly and is blasted out of the back of the engine, pushing it forwards. …<\\/p><p><a href=\\\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\\\">Read More<\\/a><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #2ca5d2;\\\"><strong>Popular Posts Today<\\/strong><\\/span><\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left; font-size: 18px; line-height: 1.4;\\\"><strong>Cutting through the smog: What to do to fight air pollution<\\/strong><\\/h3>\\n <p class=\\\"mailpoet_wp_post\\\">Tackling our air problems starts with traffic control, but individual action to reduce energy use and intensive farming would also help clean our air.<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\\\">Read More<\\/a><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left; font-size: 18px; line-height: 1.4;\\\"><strong>Ladybird’s transparent shell reveals how it moves<\\/strong><\\/h3>\\n <p class=\\\"mailpoet_wp_post\\\">They certainly know how to fold. A see-through artificial wing case has been used to watch for the first time as ladybirds put away their wings after flight.<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/ladybirds-transparent-shell-reveals-how-it-folds-its-wings\\/\\\">Read More<\\/a><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left; font-size: 18px; line-height: 1.4;\\\"><strong>Brazil’s history-making Hurricane<\\/strong><\\/h3>\\n <p class=\\\"mailpoet_wp_post\\\">Jairzinho has just made history. In claiming the fourth goal of an unforgettable 1970 FIFA World Cup Mexico™ Final against Italy, he has maintained his record of scoring in every one of Brazil’s matches en route to the Trophy.<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/brazils-history-making-hurricane\\/\\\">Read More<\\/a><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left; font-size: 18px; line-height: 1.4;\\\"><strong>Iceland’s dentist-coach defying convention and expectations<\\/strong><\\/h3>\\n <p class=\\\"mailpoet_wp_post\\\">As Iceland’s key matches loom, with kick-off just a couple of hours away, you will find their national coach in the pub. This may seem unusual...<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/icelands-dentist-coach-defying-convention-and-expectations\\/\\\">Read More<\\/a><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left; font-size: 18px; line-height: 1.4;\\\"><strong>Impact and legacy of 2018 FIFA World Cup Russia<\\/strong><\\/h3>\\n <p class=\\\"mailpoet_wp_post\\\">Organising a FIFA World Cup™ in a sustainable manner is a major challenge. The scale of the event inevitably has an impact on the Host Country. <\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/impact-and-legacy-of-2018-fifa-world-cup-russia-facts-and-figures\\/\\\">Read More<\\/a><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left; font-size: 18px; line-height: 1.4;\\\"><strong>Lineker’s life-changing treble<\\/strong><\\/h3>\\n <p class=\\\"mailpoet_wp_post\\\">Given that he won the Golden Boot in his first and came within a whisker of the Final in his second, one might expect Gary Lineker to have a tough time picking his FIFA World Cup™ highlight. Yet the man who scored ten times...<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/linekers-life-changing-treble\\/\\\">Read More<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#f2f2f2\",\"height\":\"40px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><strong>NewsDay<\\/strong><\\/p>\\n <p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><br \\/><\\/p>\\n <p><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/LinkedIn.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#f2f2f2\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#2ca5d2\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f2f2f2\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/news_day/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(36,0,'World Cup','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Header.png\",\"alt\":\"Sports-Football-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"220px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Divider-1.png\",\"alt\":\"Sports-Football-Divider-1\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#da6110\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong><span style=\\\"color: #ffffff; font-size: 14px;\\\">Issue #1<\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" target=\\\"_blank\\\" style=\\\"color: #ffffff; font-size: 14px; text-align: center;\\\">View In Browser<\\/a><\\/p>\\n <p style=\\\"text-align: right;\\\"><span style=\\\"color: #ffffff; text-align: start;\\\">Monday 1st January 2017<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#da6110\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Header-1.png\",\"alt\":\"Sports-Football-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"580px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><strong>Welcome Back!<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat lorem at est congue, non consequat lacus iaculis. Integer euismod mauris velit, vel ultrices nibh bibendum quis. Donec eget fermentum magna.<\\/p>\\n <p><\\/p>\\n <p>Nullam congue dui lectus, quis pellentesque orci placerat eu. Fusce semper neque a mi aliquet vulputate sed sit amet nisi. Etiam sed nisl nec orci pretium lacinia eget in turpis. Maecenas in posuere justo. Vestibulum et sapien vestibulum, imperdiet neque in, maximus velit.<\\/p>\\n <p><\\/p>\\n <p>Proin dignissim elit magna, viverra scelerisque libero vehicula sed<\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Divider-3.png\",\"alt\":\"Sports-Football-Divider-3\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#efefef\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#efefef\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"padding-bottom: 0;\\\"><span style=\\\"font-weight: 600;\\\">Latest News<\\/span><\\/h2>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"View All News\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#d35400\",\"borderColor\":\"#d35400\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"110px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"right\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#efefef\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#efefef\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/brazils-history-making-hurricane\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/2865897_full-lnd.jpg\",\"alt\":\"Brazil\\u2019s history-making Hurricane\",\"fullWidth\":false,\"width\":652,\"height\":366,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Brazil’s history-making Hurricane<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat lorem at est congue, non consequat lacus iaculis. Integer euismod mauris velit, vel ultrices nibh bibendum quis. Donec eget fermentum magna. Nullam congue dui lectus, quis pellentesque orci placerat eu. Fusce semper neque a mi aliquet vulputate sed sit amet nisi...<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/brazils-history-making-hurricane\\/\\\">Read More<\\/a><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#efefef\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/icelands-dentist-coach-defying-convention-and-expectations\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/2866107_full-lnd.jpg\",\"alt\":\"Iceland\\u2019s dentist-coach defying convention and expectations\",\"fullWidth\":false,\"width\":652,\"height\":366,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Iceland’s dentist-coach defying convention and expectations<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat lorem at est congue, non consequat lacus iaculis. Integer euismod mauris velit...<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/icelands-dentist-coach-defying-convention-and-expectations\\/\\\">Read More<\\/a><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/impact-and-legacy-of-2018-fifa-world-cup-russia-facts-and-figures\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/2709222_full-lnd.jpg\",\"alt\":\"Impact and legacy of 2018 FIFA World Cup Russia: facts and figures\",\"fullWidth\":false,\"width\":652,\"height\":366,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Impact and legacy of 2018 FIFA World Cup Russia: facts and figures<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat lorem at est congue, non consequat lacus iaculis. Integer euismod...<\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/impact-and-legacy-of-2018-fifa-world-cup-russia-facts-and-figures\\/\\\">Read More<\\/a><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/linekers-life-changing-treble\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/2867790_full-lnd.jpg\",\"alt\":\"Lineker\\u2019s life-changing treble\",\"fullWidth\":false,\"width\":652,\"height\":366,\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Lineker’s life-changing treble<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat lorem at est congue, non consequat lacus iaculis. Integer euismod mauris velit <span style=\\\"background-color: inherit;\\\">consequat lorem at est congue...<\\/span><\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet.info\\/linekers-life-changing-treble\\/\\\">Read More<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#efefef\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Divider-2.png\",\"alt\":\"Sports-Football-Divider-2\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Footer-1.png\",\"alt\":\"Sports-Football-Footer\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#da6110\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#da6110\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#b55311\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#da6110\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Logo-Small.png\",\"alt\":\"Sports-Football-Logo-Small\",\"fullWidth\":false,\"width\":\"772px\",\"height\":\"171px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#da6110\",\"height\":\"20px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#da6110\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#da6110\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#222222\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/world_cup/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(37,0,'Festival Event','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#0a5388\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/festival_event\\/festival-header.jpg\",\"alt\":\"festival-header\",\"fullWidth\":true,\"width\":\"1320px\",\"height\":\"879px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"36px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\">Pack your glowsticks, <br \\/>Boomfest is back! <\\/h1>\\n <p><\\/p>\\n <p style=\\\"text-align: center;\\\">Duis tempor nisl in risus hendrerit venenatis. <br \\/>Curabitur ornare venenatis nisl non ullamcorper. <\\/p>\"},{\"type\":\"button\",\"text\":\"Duis id tincidunt\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#0a5388\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"260px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Maecenas scelerisque nisi sit amet metus efficitur dapibus! <br \\/>Ut eros risus, facilisis ac aliquet vel, posuere ut urna.<\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"28px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\">Confirmed Lineup<\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><em><span style=\\\"color: #bae2ff;\\\">Main Stage<\\/span><\\/em><\\/h3><p>Quisque libero<br \\/>Nulla convallis<br \\/>Vestibulum Ornare<br \\/>Consectetur Odio<\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><em><span style=\\\"color: #bae2ff;\\\">New Acts Stage<\\/span><\\/em><\\/h3><p>Nulla interdum<br \\/>Massa nec<br \\/>Pharetra<br \\/>Varius<\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><em><span style=\\\"color: #bae2ff;\\\">Comedy Stage<\\/span><\\/em><\\/h3><p>In pulvinar<br \\/>Risus sed<br \\/>Condimentum<br \\/>Feugiat<\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\">New to the festival this year<\\/h2>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"9px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/festival_event\\/street-food.jpg\",\"alt\":\"street food\",\"fullWidth\":true,\"width\":\"499px\",\"height\":\"750px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3>Award-winning Street Food<\\/h3><p>Nullam pharetra lectus id porta pulvinar. Proin ac massa nibh. Nullam ac mi pharetra, lobortis nunc et, placerat leo. Mauris eu feugiat elit. Pellentesque eget turpis eu diam vehicula convallis non <a href=\\\"http:\\/\\/www.mailpoet.com\\\">luctus enim.<\\/a><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/festival_event\\/happy.jpeg\",\"alt\":\"happy\",\"fullWidth\":true,\"width\":\"499px\",\"height\":\"750px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3>Prepare to dazzle with our Glitter Run<\\/h3><p>Donec quis orci at metus finibus tincidunt. Sed vel urna sed urna maximus congue eu et turpis. Nulla tempus hendrerit justo eget molestie. Vivamus quis molestie lacus. Donec commodo odio a nisi feugiat, vitae egestas mi.<\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}}},{\"type\":\"footer\",\"text\":\"<p>Mauris tristique ultricies ullamcorper. <br \\/>Don\'t want to hear from us? <a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><\\/p><p><\\/p><p>Add your postal address here. <\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"13px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Georgia\",\"fontSize\":\"36px\"},\"h2\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Georgia\",\"fontSize\":\"26px\"},\"h3\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Georgia\",\"fontSize\":\"24px\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#8d062b\"},\"body\":{\"backgroundColor\":\"#0a5388\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/festival_event/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(38,0,'Retro Computing Magazine','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#4473a1\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#008282\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro_computing_magazine\\/Windows94-Header.png\",\"alt\":\"Windows94-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"740px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #ffffff;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #ffffff;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"#008282\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Courier New\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><strong>We\'re upgrading!<\\/strong><\\/h1>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus. <\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><span>Quisque in leo felis. Etiam at libero et enim tincidunt scelerisque. Ut felis lectus, imperdiet quis justo quis, elementum sagittis tellus. Sed elementum, lacus at iaculis vestibulum, nunc leo gravida nisi, sed dapibus nisi odio ac ex. Aliquam id arcu dictum, cursus quam id, eleifend libero.<\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"ridge\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1><strong>Latest News<\\/strong><\\/h1>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>What is it like to use a Windows 98 PC in 2017?<\\/strong><\\/h3>\"},{\"type\":\"text\",\"text\":\"<p class=\\\"mailpoet_wp_post\\\"><span>Computers are much more advanced than they were even a few years ago, but of course we all like to complain about the dumb things they sometimes do. It’s easy to forget how clunky things used to be, though...<\\/span><\\/p>\\n<p><a href=\\\"http:\\/\\/mailpoet.info\\/odds-on-10-science-breakthroughs-you-can-bet-on\\/\\\">Read more<\\/a><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Windows 95 still finds life online<\\/strong><\\/h3>\"},{\"type\":\"text\",\"text\":\"<p class=\\\"mailpoet_wp_post\\\">Microsoft’s Windows 95 has reached the ripe old age of 22 this year and to commemorate this milestone, TheNextWeb goes into some details about the operating system that users may have missed over the years...<\\/p>\\n<p><a href=\\\"http:\\/\\/mailpoet.info\\/brazils-history-making-hurricane\\/\\\">Read more<\\/a><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>New Sinclair ZX Spectrum Fully Funded<\\/strong><\\/h3>\"},{\"type\":\"text\",\"text\":\"<p class=\\\"mailpoet_wp_post\\\">The new Sinclair ZX Spectrum Next home computer which was launched on Kickstarter to mark the 35th birthday of the original Spectrum produced by Sinclair Research has been fully funded in less than 48 hours...<\\/p>\\n<p><a href=\\\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\\\">Read more<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#008282\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#008282\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2><strong><span style=\\\"color: #ffffff;\\\">Did you know?<\\/span><\\/strong><\\/h2>\\n<p><span style=\\\"color: #ffffff;\\\">At the time of creation and development, the microcomputers in Japan were not powerful enough to handle the complex tasks related to the design and programming of Space Invaders. Nishikado then designed his own hardware and developmental tools to make the game a reality.<\\/span><\\/p>\\n<p><strong><span style=\\\"color: #ffffff;\\\"><\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro_computing_magazine\\/Windows94-Today.png\",\"alt\":\"Windows94-Today\",\"fullWidth\":false,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#008282\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>Let\'s get social!<\\/strong><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png?mailpoet_version=3.0.0-rc.1.0.4\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png?mailpoet_version=3.0.0-rc.1.0.4\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Youtube.png?mailpoet_version=3.0.0-rc.1.0.4\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Email.png?mailpoet_version=3.0.0-rc.1.0.4\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}]},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Courier New\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#008282\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Courier New\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#008282\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#008282\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/retro_computing_magazine/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(39,0,'Shoes','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Logo.png\",\"alt\":\"Retail-Shoes-Logo\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"220px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Header.jpg\",\"alt\":\"Retail-Shoes-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f1b512\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #614a0d;\\\">Our New Range<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #614a0d;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt.<\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #614a0d;\\\">Curabitur fermentum ligula eget lacus aliquam volutpat. Integer sapien neque, laoreet quis lobortis sed, semper eget magna. Suspendisse potentiu.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#41c7bf\",\"borderColor\":\"#28a9a2\",\"borderWidth\":\"2px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#36b0a9\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"70px\"}}},{\"type\":\"text\",\"text\":\"<h2><span style=\\\"color: #ffffff;\\\">Handcrafted Shoes<\\/span><\\/h2>\\n <p style=\\\"font-size: 14px;\\\"><span><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt. Curabitur fermentum ligula eget lacus aliquam volutpat.<\\/span><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Boxes-1.jpg\",\"alt\":\"Retail-Shoes-Boxes-1\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#36b0a9\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Boxes-2.jpg\",\"alt\":\"Retail-Shoes-Boxes-2\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"70px\"}}},{\"type\":\"text\",\"text\":\"<h2><span style=\\\"color: #ffffff;\\\">Perfect For Any Occasion<\\/span><\\/h2>\\n <p style=\\\"font-size: 14px;\\\"><span><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt. Curabitur fermentum ligula eget lacus aliquam volutpat.<\\/span><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>We\'re open every day!<\\/strong><\\/h3>\\n <p style=\\\"text-align: center;\\\">Call in any time and we\'ll help you pick the best shoes for any occasion.<\\/p>\\n <p style=\\\"text-align: center;\\\">If you\'re not happy, just bring them back to us and we\'ll give you a full refund.<\\/p>\"},{\"type\":\"button\",\"text\":\"Check Out Our Website\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#41c7bf\",\"borderColor\":\"#28a9a2\",\"borderWidth\":\"2px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"220px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#d3d3d3\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Logo-Footer.png\",\"alt\":\"Retail-Shoes-Logo-Footer\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"60px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\"><span style=\\\"color: #999999;\\\">Address Line 1<\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><span style=\\\"color: #999999;\\\">Address Line 2<\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><span style=\\\"color: #999999;\\\">City<\\/span><\\/p>\\n <p style=\\\"text-align: center; font-size: 12px;\\\"><span style=\\\"color: #999999;\\\">Country<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f6f6f6\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#41c7bf\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f6f6f6\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/shoes/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(40,0,'Music','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2d2d\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/music\\/Music-Logo.png\",\"alt\":\"Music-Logo\",\"fullWidth\":false,\"width\":\"496px\",\"height\":\"78px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/music\\/music-header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"70px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #393939;\\\"><strong>You Play.<\\/strong><\\/span><\\/h1>\\n<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #393939;\\\"><strong>They Listen.<\\/strong><\\/span><\\/h1>\"},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #878787;\\\">Up to 50% off all of our instruments.<\\/span><\\/h2>\\n<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #878787;\\\">This week only.<\\/span><\\/h2>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"176px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Choose a category and get playing<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Electric Guitars\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Trumpets\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"DJ Equipment\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Amps\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Drums\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Pianos\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Banjos\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Synthesizers\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Guitar Pedals\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Harmonicas\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Flutes\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Headphones\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#2d2d2d\",\"borderWidth\":\"3px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"189px\",\"lineHeight\":\"50px\",\"fontColor\":\"#2d2d2d\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2d2d\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2d2d\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/music\\/Music-Logo.png\",\"alt\":\"Music-Logo\",\"fullWidth\":false,\"width\":\"496px\",\"height\":\"78px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 11px;\\\"><span style=\\\"color: #999999;\\\"><em><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #999999;\\\">Unsubscribe<\\/a><\\/strong><\\/em><\\/span><\\/p>\\n<p style=\\\"text-align: center; font-size: 11px;\\\"><span style=\\\"color: #999999;\\\"><em><strong><a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #999999;\\\">Manage your subscription<\\/a><\\/strong><\\/em><\\/span><br \\/><span style=\\\"color: #999999;\\\">Add your postal address here!<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"36px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#2d2d2d\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#2d2d2d\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"176px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/music/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(41,0,'Hotels','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2a31\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/Hotel-Logo-1.png\",\"alt\":\"Hotel-Logo\",\"fullWidth\":false,\"width\":\"554px\",\"height\":\"200px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>My Favourites<\\/strong><\\/span><\\/h3>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Recent Bookings<\\/strong><\\/span><\\/h3>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/Hotel-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h1><span style=\\\"color: #ffffff;\\\"><strong>Pets go free<\\/strong><\\/span><\\/h1>\"},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">Stay in any Exquisite hotel this summer and bring your pet for free!<\\/span><\\/h2>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffc600\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"46px\",\"fontColor\":\"#3f3f3f\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><strong>Get ready to travel in Exquiste style...<\\/strong><\\/h2>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/dubai-paris.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}}},{\"type\":\"text\",\"text\":\"<h1><span style=\\\"color: #ffffff;\\\"><strong>Dubai<\\/strong><\\/span><\\/h1>\\n<h2><span style=\\\"color: #ffffff;\\\">From $199<strong><br \\/><\\/strong><\\/span><\\/h2>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}}},{\"type\":\"text\",\"text\":\"<h1><strong><span style=\\\"color: #ffffff;\\\">Paris<\\/span><\\/strong><\\/h1>\\n<h2><span style=\\\"color: #ffffff;\\\">From $149<\\/span><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/toronto-delhi.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}}},{\"type\":\"text\",\"text\":\"<h1><span style=\\\"color: #ffffff;\\\"><strong>Toronto<\\/strong><\\/span><\\/h1>\\n<h2><span style=\\\"color: #ffffff;\\\">From $229<\\/span><\\/h2>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}}},{\"type\":\"text\",\"text\":\"<h1><span style=\\\"color: #ffffff;\\\"><strong>New Delhi<\\/strong><\\/span><\\/h1>\\n<h2><span style=\\\"color: #ffffff;\\\">From $149<\\/span><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/rio-london.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}}},{\"type\":\"text\",\"text\":\"<h1><span style=\\\"color: #ffffff;\\\"><strong>Rio de Janeiro<\\/strong><\\/span><\\/h1>\\n<h2><span style=\\\"color: #ffffff;\\\">From $329<\\/span><\\/h2>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}}},{\"type\":\"text\",\"text\":\"<h1><span style=\\\"color: #ffffff;\\\"><strong>London<\\/strong><\\/span><\\/h1>\\n<h2><span style=\\\"color: #ffffff;\\\">From $99<\\/span><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffc600\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Just for you...<\\/strong><\\/h2>\\n<p style=\\\"text-align: center;\\\">Here\'s 10% off your next booking with us.<\\/p>\\n<p style=\\\"text-align: center;\\\">Just grab the code below and paste it when required on the booking form!<\\/p>\"},{\"type\":\"button\",\"text\":\"VALU3DCUST\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffc600\",\"borderColor\":\"#000000\",\"borderWidth\":\"2px\",\"borderRadius\":\"6px\",\"borderStyle\":\"solid\",\"width\":\"219px\",\"lineHeight\":\"40px\",\"fontColor\":\"#000000\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2a31\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2a31\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/Hotel-Logo-Small.png\",\"alt\":\"Hotel-Logo-Small\",\"fullWidth\":true,\"width\":\"554px\",\"height\":\"200px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d2a31\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Address Line 1 <\\/strong><\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Address Line 2 <\\/strong><\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>City <\\/strong><\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Country<\\/strong><\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #ffc600;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #ffc600;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #ffc600;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #ffffff;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\"},\"h3\":{\"fontColor\":\"#2d2a31\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#008282\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#2d2a31\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffc600\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"46px\",\"fontColor\":\"#3f3f3f\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"181px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/hotels/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(42,0,'Piece of cake','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><strong>Open daily from 9am to 9pm | <a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/strong><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"#ececeb\"},\"text\":{\"fontColor\":\"#606060\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#d42b2b\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/piece_of_cake\\/Restaurant-Bakery-Logo-1.png\",\"alt\":\"Restaurant-Bakery-Logo-1\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"180px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/piece_of_cake\\/Restaurant-Bakery-Header.jpg\",\"alt\":\"Restaurant-Bakery-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"1600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>It\'s our Birthday!<\\/strong><\\/h1>\"},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center; line-height: 1.4;\\\">To celebrate, we\'re adding a slice of our Birthday cake to every order. Pop in this weekend to use our special offer code and enjoy!<\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; border: 3px dashed #d42b2b; color: #d42b2b; padding: 10px; font-size: 24px;\\\"><strong>HAPPYBDAY<\\/strong><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ececeb\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ececeb\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"background-color: #ececeb; line-height: 1.3;\\\"><span style=\\\"font-weight: 600;\\\"><span style=\\\"font-size: 12px; text-align: center;\\\">Add your postal address here.<\\/span><\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right; line-height: 1.3;\\\"><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #d42b2b; text-decoration: none; font-size: 12px; text-align: center;\\\">Unsubscribe<\\/a><\\/strong><\\/p>\\n <p style=\\\"text-align: right; line-height: 1.3;\\\"><strong><a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #d42b2b; text-decoration: none; font-size: 12px; text-align: center;\\\">Manage Subscription<\\/a><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ececeb\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#606060\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#606060\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#d42b2b\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#606060\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#d42b2b\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ececeb\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/piece_of_cake/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(43,0,'Buddhist Temple','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#00050b\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"11px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#787878\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"80px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Logo.png\",\"alt\":\"Buddhist-Logo\",\"fullWidth\":false,\"width\":\"170px\",\"height\":\"99px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"text\",\"text\":\"<h1>With our thoughts, we make the <span style=\\\"color: #f37f31;\\\">world<\\/span><\\/h1>\\n <p><span style=\\\"color: #dedede;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum. Vestibulum finibus sapien in enim ultricies, vel placerat risus lacinia.<\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"24.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#f37f31\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Avatar.jpg\",\"alt\":\"Buddhist-Avatar\",\"fullWidth\":false,\"width\":\"70px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"text\",\"text\":\"<p><span style=\\\"color: #999999;\\\">Special Event<\\/span><\\/p>\\n <h3>Dalai Lama visit<\\/h3>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Book tickets here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f37f31\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"145px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#f37f31\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #f37f31;\\\">New prayer flags<\\/span><\\/h3>\\n <p><span style=\\\"color: #dedede;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum. Vestibulum finibus sapien in enim ultricies, vel placerat risus lacinia.<\\/span><\\/p>\\n <p><a href=\\\"http:\\/\\/a9d.fc4.mwp.accessdomain.com\\\">Find out more ><\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/5bafccfc554c7f08176ec084.png\",\"alt\":\"5bafccfc554c7f08176ec084\",\"fullWidth\":false,\"width\":\"280px\",\"height\":\"524px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Social.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f37f31\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"45px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"90px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Sharing matters to us<\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum. Vestibulum finibus sapien in enim ultricies, vel placerat risus lacinia.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"45px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Images-1.jpg\",\"alt\":\"Buddhist-Images-1\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #dedede;\\\">Meditation for beginners<\\/span><\\/h3>\\n <p><span style=\\\"color: #dedede;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum.<\\/span> <\\/span><\\/p>\\n <p><a href=\\\"http:\\/\\/a9d.fc4.mwp.accessdomain.com\\\">Find out more ><\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Images-2.jpg\",\"alt\":\"Buddhist-Images-2\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #dedede;\\\">Planning your trip to a temple<\\/span><\\/h3>\\n <p><span style=\\\"color: #dedede;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum.<\\/span> <\\/span><\\/p>\\n <p><a href=\\\"http:\\/\\/a9d.fc4.mwp.accessdomain.com\\\">Find out more ><\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Images-3.jpg\",\"alt\":\"Buddhist-Images-3\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #dedede;\\\">Visit the sunken statues<\\/span><\\/h3>\\n <p><span style=\\\"color: #dedede;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum.<\\/span> <\\/span><\\/p>\\n <p><a href=\\\"http:\\/\\/a9d.fc4.mwp.accessdomain.com\\\">Find out more ><\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#f37f31\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Logo.png\",\"alt\":\"Buddhist-Logo\",\"fullWidth\":false,\"width\":\"170px\",\"height\":\"99px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#f37f31\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#eeeeee\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#eeeeee\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#eeeeee\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#eeeeee\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#f37f31\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#00050b\"},\"body\":{\"backgroundColor\":\"#00050b\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Book tickets here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f37f31\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"145px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#f37f31\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#f37f31\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"11px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#787878\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/buddhist-temple/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(44,0,'Mosque','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#009146\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"10px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"none\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#333333\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Logo.png\",\"alt\":\"Mosque-Logo\",\"fullWidth\":false,\"width\":\"182px\",\"height\":\"119px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\"><strong>JANUARY 2019<\\/strong><\\/span><\\/p>\\n <h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Newsletter<\\/span><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc scelerisque ut purus vel eleifend. Curabitur mollis nisi id mauris efficitur pretium.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"90px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #009146;\\\"><strong>Upcoming Events<\\/strong><\\/span><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Images-1.jpg\",\"alt\":\"Mosque-Images-1\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>14th January 2019<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><span>The Four Imams<\\/span><\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc scelerisque ut purus vel eleifend. Curabitur mollis nisi id mauris.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><strong><a href=\\\"\\\">Find out more ><\\/a><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Images-2.jpg\",\"alt\":\"Mosque-Images-2\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>23rd January 2019<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><span>Prayer Makes Perfect<\\/span><\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc scelerisque ut purus vel eleifend. Curabitur mollis nisi id mauris.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong><a href=\\\"\\\">Find out more ><\\/a><\\/strong><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Images-3.jpg\",\"alt\":\"Mosque-Images-3\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>29th January 2019<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><span>Plaster Carving<\\/span><\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc scelerisque ut purus vel eleifend. Curabitur mollis nisi id mauris.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong><a href=\\\"http:\\/\\/a9d.fc4.mwp.accessdomain.com\\\">Find out more ><\\/a><\\/strong><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#009146\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"5.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#009146\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #009146;\\\"><strong>Prayer Times<\\/strong><\\/span><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong><\\/strong><strong>Fajr<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"7.04pm\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Sunrise<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"8.41am\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Dhuhr<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"12.35pm\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Asr<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"2.01pm\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Maghrib<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"4.21pm\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Isha\'a<\\/strong><\\/h2>\"},{\"type\":\"button\",\"text\":\"5.58pm\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/bg-2.jpg\",\"alt\":\"bg-2\",\"fullWidth\":false,\"width\":\"1200px\",\"height\":\"286px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#009146\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"24px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Logo.png\",\"alt\":\"Mosque-Logo\",\"fullWidth\":false,\"width\":\"144px\",\"height\":\"119px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"29px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"11px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#009146\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"13px\"},\"h1\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#009146\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#e3e3e3\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"5.58pm\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#009146\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"5.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#009146\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"11px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#009146\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"29px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"10px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/mosque/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(45,0,'Synagogue','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2b3d5e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#7386a7\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#384e76\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"padding\":\"7.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#0d7e85\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#384e76\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Logo.png\",\"alt\":\"Synagogue-Logo\",\"fullWidth\":false,\"width\":\"180px\",\"height\":\"208px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"27px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Header-2.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#384e76\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"140px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"44px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">Welcome back<\\/span><\\/h1>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">This month we\'ll be discussing important topics around our faith, and highlighting some events that you may be interested in.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"38px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #04aeb9;\\\"><strong><span>S P E C I A L E V E N T<\\/span><\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">Stories In Song<\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">An afternoon of comedy and music with Daniel Cainer. This multi-award-winning master-songwriter and great musician brings our family trees to life.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Tickets available here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"175px\",\"lineHeight\":\"38px\",\"fontColor\":\"#093c3f\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"43px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Back-1.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/male-18.jpg\",\"alt\":\"male-18\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"360px\",\"styles\":{\"block\":{\"textAlign\":\"right\"}}},{\"type\":\"text\",\"text\":\"<p class=\\\"font_2\\\" style=\\\"text-align: right;\\\"><span style=\\\"color: #384e76;\\\"><strong>Ariel Abel<\\/strong><\\/span><\\/p>\\n <p class=\\\"font_2\\\" style=\\\"font-size: 11px; text-align: right;\\\"><span style=\\\"color: #384e76;\\\">Princes Road Synagogue <span>Rabbi <\\/span><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get in touch\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"30px\",\"fontColor\":\"#093c3f\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"right\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">Greetings from our Rabbi <\\/span><\\/h2>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque magna erat, vitae ultricies eros porttitor eleifend. Fusce luctus accumsan risus, at rhoncus ante vehicula in. Praesent ut ultricies ipsum. Sed lacus dolor, laoreet nec tincidunt ut, commodo nec augue. In dignissim justo eget ante facilisis ornare.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\"><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\"><span>Cras in lacus ac lectus hendrerit porta. Morbi pretium id nisi eget placerat. Integer nec quam nec augue luctus facilisis. Nam sollicitudin velit nec risus mattis, quis porttitor tortor consequat. Vivamus nec justo vel lectus pharetra volutpat.<\\/span><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\"><span><\\/span><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\"><span>Quisque eget vestibulum quam, eu fermentum ipsum.<\\/span><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#384e76\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"padding\":\"6.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#04aeb9\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #384e76;\\\">Latest News<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #384e76;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque magna erat, vitae ultricies eros porttitor eleifend.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Images-1.jpg\",\"alt\":\"Synagogue-Images-1\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">Building work started this week<\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque magna erat.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"81px\",\"lineHeight\":\"30px\",\"fontColor\":\"#093c3f\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Images-2.jpg\",\"alt\":\"Synagogue-Images-2\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">What\'s life like as a Jewish teenager?<\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque magna erat.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"81px\",\"lineHeight\":\"30px\",\"fontColor\":\"#093c3f\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Images-3.jpg\",\"alt\":\"Synagogue-Images-3\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">The life of paper in a modern world<\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #384e76;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque magna erat.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"81px\",\"lineHeight\":\"30px\",\"fontColor\":\"#093c3f\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2b3d5e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Keep in touch with us<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque magna erat, vitae ultricies eros porttitor eleifend.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2b3d5e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2b3d5e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Logo.png\",\"alt\":\"Synagogue-Logo\",\"fullWidth\":false,\"width\":\"180px\",\"height\":\"208px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#04aeb9\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2b3d5e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"13px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#2b3d5e\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Get in touch\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"30px\",\"fontColor\":\"#093c3f\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"right\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"#04aeb9\",\"padding\":\"6.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#04aeb9\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#04aeb9\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#7386a7\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/synagogue/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(46,0,'Faith','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/faith\\/church-header.jpg\",\"alt\":\"church-header\",\"fullWidth\":true,\"width\":\"1036px\",\"height\":\"563px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\">Spreading Love & Hope...<\\/h1><p>Duis id molestie ex. Quisque finibus magna in justo tristique pellentesque. Nulla sed leo facilisis arcu malesuada molestie vel quis dolor. Donec imperdiet condimentum odio ut elementum. Aenean nisl massa, rutrum a ullamcorper eget, molestie non erat. <\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f3f4f4\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\">Family Faith Events<\\/h2>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/faith\\/family.jpg\",\"alt\":\"family\",\"fullWidth\":false,\"width\":\"660px\",\"height\":\"880px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p>In maximus tempus pellentesque. Nunc scelerisque ante odio, vel placerat dui fermentum efficitur. Integer vitae ex suscipit, aliquet eros vitae, ornare est. <a href=\\\"http:\\/\\/www.example.com\\\">Aenean vel dapibus nisi<\\/a>.<\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2>Thoughts & Prayers<\\/h2>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/faith\\/pray.jpg\",\"alt\":\"pray\",\"fullWidth\":false,\"width\":\"660px\",\"height\":\"880px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p>Donec sed vulputate ipsum. In scelerisque rutrum interdum. Donec imperdiet dignissim erat, in dictum lectus accumsan ut. <a href=\\\"http:\\/\\/www.example.com\\\">Aliquam erat volutpat.<\\/a><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\">Latest News<\\/h1>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"7px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"1px\",\"borderColor\":\"#dcdcdc\"}}},{\"type\":\"automatedLatestContent\",\"amount\":\"3\",\"contentType\":\"post\",\"terms\":[],\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#dfeaf3\",\"borderColor\":\"#00ddff\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"45px\",\"fontColor\":\"#597890\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"2px\",\"borderColor\":\"#dfeaf3\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#e7eff6\",\"padding\":\"13px\",\"borderStyle\":\"ridge\",\"borderWidth\":\"6px\",\"borderColor\":\"#597890\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#e7eff6\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><b>Add your postal address here!<\\/b>\",\"styles\":{\"block\":{\"backgroundColor\":\"#e7eff6\"},\"text\":{\"fontColor\":\"#787878\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"14px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#787878\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Find us socially:<\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#787878\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#597890\",\"fontFamily\":\"Comic Sans MS\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#597890\",\"fontFamily\":\"Comic Sans MS\",\"fontSize\":\"18px\"},\"h3\":{\"fontColor\":\"#787878\",\"fontFamily\":\"Tahoma\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#597890\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#e7eff6\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/faith/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(47,0,'College','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Logo.png\",\"alt\":\"College-Logo\",\"fullWidth\":false,\"width\":\"106px\",\"height\":\"652px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"36px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"33px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#333333\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #ffcc00;\\\"><strong>S U M M E R E D I T I O N<\\/strong><\\/span><\\/p>\\n <h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">Graduation Day is Coming<\\/span><\\/h1>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dapibus iaculis risus ut tincidunt. Integer gravida mauris erat, vehicula blandit velit ultrices ut. <\\/span><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"54px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>H E A D M A S T E R \' S B L O G<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: left;\\\"><strong><span style=\\\"color: #333333;\\\">Your hard work pays off in the future to come<\\/span><\\/strong><\\/h2>\\n <p><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"18.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffcc00\"}}},{\"type\":\"text\",\"text\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur purus quam, semper eget nisl at, pretium fermentum ligula. Ut augue elit, congue non nisl eget, venenatis ornare ante. Aliquam erat volutpat. Maecenas facilisis eget risus vel scelerisque.<\\/p>\\n <p><\\/p>\\n <p>Etiam eros arcu, vestibulum at iaculis ut, iaculis nec est. Ut ut malesuada purus. Etiam sed accumsan eros, eu aliquam nisl. Nam faucibus sit amet felis at euismod. Sed efficitur varius tincidunt. Curabitur varius, nunc id interdum sodales, felis purus congue nulla, at semper orci est id mauris. Ut euismod vel dui sed mollis. Aliquam vestibulum id leo eu tristique. Etiam sit amet lacus vitae mi dignissim iaculis id ac nulla.<\\/p>\\n <p><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Image.jpg\",\"alt\":\"College-Image\",\"fullWidth\":false,\"width\":\"1200px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><\\/p>\\n <p>Praesent mi lorem, varius sit amet mattis at, sollicitudin ac enim. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam rhoncus tellus eleifend, accumsan magna in, imperdiet mauris. Cras a justo in lectus semper fermentum. Integer porta vel risus a varius. Aliquam nec nulla dui. Nulla congue ornare fringilla.<\\/p>\\n <p><\\/p>\\n <p>Nulla gravida interdum velit, nec pretium lacus placerat vel. Curabitur vitae arcu condimentum, iaculis nisl ac, viverra augue.<\\/p>\\n <p><\\/p>\\n <p>Etiam tincidunt justo quam, ac suscipit lectus hendrerit ac.<\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Avatar.jpg\",\"alt\":\"College-Avatar\",\"fullWidth\":true,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><\\/p>\\n <p><\\/p>\\n <p><strong>Mr George Chalk<\\/strong><\\/p>\\n <p>Headmaster & Director<\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"44px\"}}},{\"type\":\"text\",\"text\":\"<p><strong>Need some tips and advice? <\\/strong><\\/p>\\n <p>Here\'s the latest updates from our blog:<\\/p>\\n <p><\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">7 ways to destress before an exam even starts<\\/a><\\/p>\\n <p><\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Focussing on the right content is key to being successful<\\/a><\\/p>\\n <p><\\/p>\\n <p><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Getting a degree is only the start of the battle<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffcc00;\\\"><strong><\\/strong><\\/span><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><span> | <\\/span><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><span>Add your postal address here!<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Logo.png\",\"alt\":\"College-Logo\",\"fullWidth\":false,\"width\":\"106px\",\"height\":\"652px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Playfair Display\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Playfair Display\",\"fontSize\":\"30px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Open Sans\",\"fontSize\":\"24px\"},\"link\":{\"fontColor\":\"#447c9d\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"18.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffcc00\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/college/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(48,0,'Renewable Energy','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#313f58\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #fdb323;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #fdb323;\\\">View in browser ><\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#016fc1\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Logo.png\",\"alt\":\"Energy-Logo\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"145px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"36px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">2018 Energy Report<\\/span><\\/strong><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse maximus purus vel sem rutrum pulvinar. Pellentesque at justo id ipsum porttitor viverra non porta nisl.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read it here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#fdb323\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"135px\",\"lineHeight\":\"44px\",\"fontColor\":\"#2e2e2e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"197px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\"><strong>R E C E N T<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #003366;\\\"><strong>Here\'s what\'s happening this week<\\/strong><\\/span><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Image-1.jpg\",\"alt\":\"Energy-Image-1\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #003366;\\\"><strong>How can electricity be better?<\\/strong><\\/span><\\/h3>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#fdb323\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"30px\",\"fontColor\":\"#2e2e2e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Image-2.jpg\",\"alt\":\"Energy-Image-2\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #003366;\\\"><strong>Nuclear power for newcomers<\\/strong><\\/span><\\/h3>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#fdb323\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"30px\",\"fontColor\":\"#2e2e2e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Image-3.jpg\",\"alt\":\"Energy-Image-3\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #003366;\\\"><strong>Saving the planet, one trip at a time<\\/strong><\\/span><\\/h3>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#fdb323\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"30px\",\"fontColor\":\"#2e2e2e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Image-Tall.jpg\",\"alt\":\"Energy-Image-Tall\",\"fullWidth\":true,\"width\":\"600px\",\"height\":\"900px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>S P O N S O R E D<\\/strong><\\/span><\\/p>\\n <h2><span style=\\\"color: #003366;\\\"><strong>Control your heating and your spending with our amazing app<\\/strong><\\/span><\\/h2>\\n <p><span style=\\\"color: #003366;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse maximus purus vel sem rutrum pulvinar. <\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/CityNews-GoogleDownload.png\",\"alt\":\"CityNews-GoogleDownload\",\"fullWidth\":false,\"width\":\"130px\",\"height\":\"168px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/CityNews-AppleDownload.png\",\"alt\":\"CityNews-AppleDownload\",\"fullWidth\":false,\"width\":\"130px\",\"height\":\"168px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#313f58\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Logo.png\",\"alt\":\"Energy-Logo\",\"fullWidth\":true,\"width\":\"134px\",\"height\":\"145px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}]},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #fdb323;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #fdb323;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #fdb323;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #999999;\\\">Add your postal address here!<\\/span><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"36px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#2ea1cd\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#313f58\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#fdb323\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"30px\",\"fontColor\":\"#2e2e2e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/renewable-energy/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(49,0,'Primary School','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#cae7f2\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><strong><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/strong><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#e63729\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-Logo.png\",\"alt\":\"PrimarySchool-Logo\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"652px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"33px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e63729\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\"><a href=\\\"http:\\/\\/mailpoet-sg.com\\\" style=\\\"color: #ffffff;\\\">News & Events<\\/a><\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\"><a href=\\\"http:\\/\\/mailpoet-sg.com\\\" style=\\\"color: #ffffff;\\\">Parent Information<\\/a><\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\"><a href=\\\"http:\\/\\/mailpoet-sg.com\\\" style=\\\"color: #ffffff;\\\">Scho<\\/a><a href=\\\"http:\\/\\/mailpoet-sg.com\\\" style=\\\"color: #ffffff;\\\">ol Calendar<\\/a><\\/span><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-WideImage-1.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c23a3a\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">Welcome back everyone!<\\/span><\\/strong><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum. Donec vel purus urna.<\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-Avatar.png\",\"alt\":\"PrimarySchool-Avatar\",\"fullWidth\":false,\"width\":\"80px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><em><span style=\\\"color: #ffffff;\\\">Dr Angela Boyd - Director of Schooling<\\/span><\\/em><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>The new school year is here<\\/strong><\\/span><\\/h1>\\n <p style=\\\"text-align: left;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum. Donec vel purus urna. <\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span>Sed dui sapien, congue non accumsan euismod, ultrices ut dui. Ut sapien arcu, interdum pharetra enim at, porttitor viverra nisi. Suspendisse potenti. <\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"4px\",\"borderColor\":\"#e63729\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-CopyImage.jpg\",\"alt\":\"PrimarySchool-CopyImage\",\"fullWidth\":false,\"width\":\"1000px\",\"height\":\"583px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Essentials for your bag<\\/strong><\\/span><\\/h2>\\n <p style=\\\"text-align: left;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum. Donec vel purus urna. <\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get the kit\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e63729\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-School.png\",\"alt\":\"PrimarySchool-School\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"512px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Class Lists\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e63729\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"38px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Payments\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#43772f\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"38px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Schedule\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#408bb6\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"38px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e63729\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">Everything is social!<\\/span><\\/strong><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum. Donec vel purus urna.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#cae7f2\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-Logo.png\",\"alt\":\"PrimarySchool-Logo\",\"fullWidth\":false,\"width\":\"110px\",\"height\":\"652px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#e63729\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#cae7f2\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Get the kit\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#e63729\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"4px\",\"borderColor\":\"#e63729\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#e63729\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#e63729\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/primary-school/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(50,0,'Computer Repair','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1c00af\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #999999;\\\">View this in your browser.<\\/a><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1c00af\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/computer-repair\\/ComputerRepair-Logo.png\",\"alt\":\"ComputerRepair-Logo\",\"fullWidth\":true,\"width\":\"408px\",\"height\":\"97px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"34px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong>TIRED OF SCREENS LIKE THIS?<\\/strong><\\/h1>\\n <p style=\\\"text-align: center;\\\"><em>Don\'t panic! We\'re here to help! <\\/em><\\/p>\\n <p style=\\\"text-align: center;\\\"><\\/p>\\n <p style=\\\"text-align: center;\\\">Come on down to our nearest store and we\'ll be happy to take a look at your computer and help get you back up and running again in no time.<\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"14px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><a href=\\\"http:\\/\\/mailpoet-sg.com\\/wp-admin\\/http:\\\">Computer Repair<\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><a href=\\\"http:\\/\\/mailpoet-sg.com\\/wp-admin\\/http:\\\">Help & Support<\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><a href=\\\"http:\\/\\/mailpoet-sg.com\\/wp-admin\\/http:\\\">Call Us Now<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/computer-repair\\/ComputerRepair-Image-2.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1c00af\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"42px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Check out our locations<\\/strong><\\/h2>\\n <p style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce dapibus iaculis risus ut tincidunt.<\\/p>\"},{\"type\":\"button\",\"text\":\"View locations\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#f8f8f8\",\"borderWidth\":\"3px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/computer-repair\\/ComputerRepair-Logo.png\",\"alt\":\"ComputerRepair-Logo\",\"fullWidth\":true,\"width\":\"254px\",\"height\":\"97px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><span> | <\\/span><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 12px;\\\">Add your address here<\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#1c00af\"},\"body\":{\"backgroundColor\":\"#1c00af\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"View locations\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"borderColor\":\"#f8f8f8\",\"borderWidth\":\"3px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"16.5px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#ffffff\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"linkedin\",\"link\":\"http:\\/\\/www.linkedin.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"LinkedIn\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/computer-repair/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(51,0,'Yoga Studio','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#1e2937\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-1.png\",\"alt\":\"yoga-1\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"740px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Here\'s your classes for this week:<\\/strong><\\/h2>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong><span style=\\\"color: #83bd31;\\\"><em>Weekdays<\\/em><\\/span><\\/strong><\\/h3>\\n <p><strong>Monday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Tuesday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Wednesday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Thursday<\\/strong>: CLOSED FOR PRIVATE CLASS.<\\/p>\\n <p><strong>Friday<\\/strong>: 7am, 9am, 11am, and 3pm.<\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong><span style=\\\"color: #83bd31;\\\"><em>Weekend<\\/em><\\/span><\\/strong><\\/h3>\\n <p><strong>Saturday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Sunday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"22px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#d5d5d5\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"font-weight: 600;\\\">Meet the instructors<\\/span><\\/h3>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-person-1.png\",\"alt\":\"yoga-person-1\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #83bd31;\\\"><span style=\\\"font-weight: 600;\\\">Maria Smith<\\/span><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\">Nullam hendrerit feugiat feugiat. Praesent mollis ante lacus, quis tempor leo sagittis vel. Donec sagittis eros at felis venenatis ultricies.<\\/p>\"},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#83bd31\",\"borderColor\":\"#83bd31\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-person-2.png\",\"alt\":\"yoga-person-2\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #83bd31;\\\"><span style=\\\"font-weight: 600;\\\">Fiona Davies<\\/span><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\">Nullam hendrerit feugiat feugiat. Praesent mollis ante lacus, quis tempor leo sagittis vel. Donec sagittis eros at felis venenatis ultricies.<\\/p>\"},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#83bd31\",\"borderColor\":\"#83bd31\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-person-3.png\",\"alt\":\"yoga-person-3\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #83bd31;\\\"><span style=\\\"font-weight: 600;\\\">Matthew Johnson<\\/span><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\">Nullam hendrerit feugiat feugiat. Praesent mollis ante lacus, quis tempor leo sagittis vel. Donec sagittis eros at felis venenatis ultricies.<\\/p>\"},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#83bd31\",\"borderColor\":\"#83bd31\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"31px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#83bd31\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<p><strong>Pose of the week:<\\/strong><\\/p>\\n <h2>Virabhadrasana I<\\/h2>\\n <p>The myth is that the powerful priest Daksha made a great yagna (ritual sacrifice) but did not invite his youngest daughter Sati and her husband Shiva, the supreme ruler of the universe. Sati found out and decided to go alone to the yagna.<\\/p>\\n <p><\\/p>\\n <p>When she arrived, Sati entered into an argument with her father. Unable to withstand his insults, she spoke a vow to her father, “Since it was you who gave me this body, I no longer wish to be associated with it.”<\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-pose.png\",\"alt\":\"yoga-pose\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"font-weight: 600;\\\">Quote of the week<\\/span><\\/h3>\"},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><em>Be a lamp to yourself. Be your own confidence. Hold on to the truth within yourself as to the only truth.<\\/em><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"font-family: Arial, sans-serif; font-size: 14px; text-align: center; color: #999999;\\\">Buddha<\\/span><em><\\/em><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#d5d5d5\",\"padding\":\"15px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#b3b3b3\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#d5d5d5\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-logo-small.png\",\"alt\":\"yoga-logo-small\",\"fullWidth\":false,\"width\":\"50px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 13px; text-align: center;\\\"><strong>Yoga Studio<\\/strong><\\/p>\\n <p style=\\\"font-size: 11px; text-align: center;\\\">Address Line 1<\\/p>\\n <p style=\\\"font-size: 11px; text-align: center;\\\">Address Line 2<\\/p>\\n <p style=\\\"font-size: 11px; text-align: center;\\\">City\\/Town<\\/p>\\n <p style=\\\"font-size: 11px; text-align: center;\\\">Country<\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><\\/p><p><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"11px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#000000\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"#d5d5d5\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#1e2937\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\"},\"h1\":{\"fontColor\":\"#1e2937\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#1e2937\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#1e2937\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#83bd31\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#1e2937\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/yoga_studio/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(52,0,'Retro','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Header.jpg\",\"alt\":\"1980s-Header\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"740px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><strong>Welcome back !<\\/strong><\\/h2>\\n<p style=\\\"text-align: left;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#f36543\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Download-1.jpg\",\"alt\":\"1980s-Download-1\",\"fullWidth\":false,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong>Free Retro-Futuristic Font<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Download Here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f36543\",\"borderColor\":\"#f36543\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"150px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Download-2.jpg\",\"alt\":\"1980s-Download-2\",\"fullWidth\":false,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><span style=\\\"font-weight: 600;\\\">New UI Kit now available<\\/span><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Download Here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f36543\",\"borderColor\":\"#f36543\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"150px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Download-3.jpg\",\"alt\":\"1980s-Download-3\",\"fullWidth\":false,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3><strong>Free Retro Patterns<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Download Here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#f36543\",\"borderColor\":\"#f36543\",\"borderWidth\":\"1px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"150px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#12233c\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Footer.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"140px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Retro Downloads<\\/span><\\/h1>\\n<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">To Your Inbox<\\/span><\\/h1>\\n<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Every Week<\\/span><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"120px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#12233c\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#12223b\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#f36543\",\"textDecoration\":\"underline\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}]}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#12233c\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Verdana\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#008282\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#12233c\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#f36543\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"140px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/retro/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(53,0,'Charity','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#7bc9ee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/header-bg.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/charity-logo.png\",\"alt\":\"charity-logo\",\"fullWidth\":false,\"width\":\"240px\",\"height\":\"103px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"43px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><span style=\\\"color: #a6d2d2;\\\">Charity Number: 09238923<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/charity-header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"45px\"}}},{\"type\":\"text\",\"text\":\"<h1><strong><span style=\\\"color: #ffffff;\\\">We need your help<\\/span><\\/strong><\\/h1>\"},{\"type\":\"text\",\"text\":\"<h3><span style=\\\"color: #ffffff;\\\">For just $5 a month, you can help people around the world that are in desperate need of fresh, clean water.<\\/span><\\/h3>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"80px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>It only takes 5 minutes to help someone in need<\\/strong><\\/span><\\/h2>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt. Duis viverra imperdiet magna, a facilisis diam scelerisque at. Nunc at quam ligula. Nullam ut magna velit.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Start Helping Now\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#05a0e8\",\"borderColor\":\"#05a0e8\",\"borderWidth\":\"1px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"241px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#7bc9ee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Noah\'s Story<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#7bc9ee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/Charity-Child.png\",\"alt\":\"Charity-Child\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"200px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt. <\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><span>Duis viverra imperdiet magna, a facilisis diam scelerisque at. Nunc at quam ligula. Nullam ut magna velit.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#7bc9ee\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/Charity-Video.jpg\",\"alt\":\"Charity-Video\",\"fullWidth\":false,\"width\":\"1280px\",\"height\":\"760px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/Charity-Logo-Small.png\",\"alt\":\"Charity-Logo-Small\",\"fullWidth\":false,\"width\":\"407px\",\"height\":\"82px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px;\\\"><span style=\\\"color: #000000;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #000000;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #000000;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #000000;\\\">Add your postal address here!<\\/span><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#05a0e8\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#7bc9ee\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"80px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/charity/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(54,0,'City News','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #999999;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #999999;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#000000\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"70px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Logo.png\",\"alt\":\"CityNews-Logo\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"178px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>[date:mtext] [date:y]<\\/strong><\\/span><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">N E W S L E T T E R<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"22px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong><span><\\/span><\\/strong><\\/span><span style=\\\"color: #999999;\\\"><strong>TOP STORY<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Park opens to all within the community<\\/strong><\\/span><\\/h2>\\n <p><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ac maximus justo. Phasellus ullamcorper, enim at eleifend malesuada, risus purus interdum arcu, sed porttitor erat diam a neque. <\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\"><\\/span><\\/p>\\n <p><strong><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Read full article ><\\/a><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Images-1.jpg\",\"alt\":\"CityNews-Images-1\",\"fullWidth\":true,\"width\":\"600px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-ThinImages-1.jpg\",\"alt\":\"CityNews-ThinImages-1\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"300px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>EVENTS<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Christmas Market opening soon<\\/strong><\\/span><\\/h3>\\n <p><strong><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Read full article ><\\/a><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-ThinImages-2.jpg\",\"alt\":\"CityNews-ThinImages-2\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"300px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>HEALTHCARE<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Hospitals brace for cuts to services<\\/strong><\\/span><\\/h3>\\n <p><strong><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Read full article ><\\/a><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-ThinImages-3.jpg\",\"alt\":\"CityNews-ThinImages-3\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"300px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>WEATHER<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Dry heat has a high chance to cause fires<\\/strong><\\/span><\\/h3>\\n <p><strong><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Read full article ><\\/a><\\/strong><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-ThinImages-4.jpg\",\"alt\":\"CityNews-ThinImages-4\",\"fullWidth\":false,\"width\":\"600px\",\"height\":\"300px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #999999;\\\"><strong>ARTS<\\/strong><\\/span><\\/p>\\n <h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Local theatre to stage dramatic new play<\\/strong><\\/span><\\/h3>\\n <p><strong><a href=\\\"http:\\/\\/mailpoet-sg.com\\\">Read full article ><\\/a><\\/strong><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Phone.png\",\"alt\":\"CityNews-Phone\",\"fullWidth\":false,\"width\":\"162px\",\"height\":\"679px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Download the CityNews app<\\/strong><\\/span><\\/h3>\\n <p><span style=\\\"color: #d1d1d1;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ac maximus justo. Phasellus ullamcorper, enim at eleifend malesuada, risus purus interdum arcu, sed porttitor erat diam a neque. <\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-GoogleDownload.png\",\"alt\":\"CityNews-GoogleDownload\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"168px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-AppleDownload.png\",\"alt\":\"CityNews-AppleDownload\",\"fullWidth\":false,\"width\":\"150px\",\"height\":\"168px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#4b4b4b\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Logo.png\",\"alt\":\"CityNews-Logo\",\"fullWidth\":false,\"width\":\"122px\",\"height\":\"178px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #999999;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #999999;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #999999;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #ffffff;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#252525\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#f8f8f8\"},\"body\":{\"backgroundColor\":\"#252525\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#4b4b4b\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"left\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#4b4b4b\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"posts\",\"offset\":0,\"terms\":[],\"search\":\"\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/city-local-news/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(55,0,'Coffee','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Logo-1.png\",\"alt\":\"Coffee-Logo-1\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #000000;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #000000;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Header.jpg\",\"alt\":\"Coffee-Header\",\"fullWidth\":false,\"width\":\"1280px\",\"height\":\"260px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/coffee.gif\",\"alt\":\"coffee\",\"fullWidth\":true,\"width\":\"660px\",\"height\":\"371px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>We\'ve got some new blends, just for you.<\\/strong><\\/h2>\\n<p style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas. Suspendisse felis felis, tempor id convallis in, tincidunt quis nisi. Morbi dolor elit, maximus et velit quis, fermentum porta lectus. Nulla odio est, tempus vitae nunc sit amet, fermentum tristique lacus. In bibendum fringilla cursus.<\\/p>\"},{\"type\":\"button\",\"text\":\"Check Them Out\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#6fb910\",\"borderColor\":\"#6fb910\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"150px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#d6d6d6\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Mid.jpg\",\"alt\":\"Coffee-Mid\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"411px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#eaeaea\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"#eaeaea\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas. Suspendisse felis felis, tempor id convallis in, tincidunt quis nisi.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><span> Morbi dolor elit, maximus et velit quis, fermentum porta lectus. Nulla odio est, tempus vitae nunc sit amet, fermentum tristique lacus. In bibendum fringilla cursus.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas. Suspendisse felis felis, tempor id convallis in, tincidunt quis nisi.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><span>Morbi dolor elit, maximus et velit quis, fermentum porta lectus. Nulla odio est, tempus vitae nunc sit amet, fermentum tristique lacus. In bibendum fringilla cursus.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Interested in upgrading your subscription?<\\/strong><\\/h2>\\n<p style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\\n<p style=\\\"text-align: center;\\\">Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas.<\\/p>\"},{\"type\":\"button\",\"text\":\"Get Started\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#6fb910\",\"borderColor\":\"#6fb910\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"118px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#d6d6d6\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Latest News<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Cup.jpg\",\"alt\":\"Coffee-Cup\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #6fb910;\\\"><strong>Capsule MFG Launches Upgraded Line of Modular Coffee Bars<\\/strong><\\/span><\\/p>\\n<p style=\\\"text-align: left;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\\n<p style=\\\"text-align: left;\\\">Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas.<\\/p>\\n<p style=\\\"text-align: left;\\\"><\\/p>\\n<p><span style=\\\"color: #6fb910;\\\"><strong><a href=\\\"http:\\/\\/mailpoet.info\\/\\\" style=\\\"color: #6fb910;\\\">Read more<\\/a><\\/strong><\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Cup.jpg\",\"alt\":\"Coffee-Cup\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #6fb910;\\\"><strong>British-Designed Niche Zero Aims to Leave No Grind Behind<\\/strong><\\/span><\\/p>\\n<p style=\\\"text-align: left;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\\n<p style=\\\"text-align: left;\\\">Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas.<\\/p>\\n<p style=\\\"text-align: left;\\\"><\\/p>\\n<p><strong><span style=\\\"color: #6fb910;\\\"><a href=\\\"http:\\/\\/mailpoet.info\\/\\\" style=\\\"color: #6fb910;\\\">Read more<\\/a><\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Cup.jpg\",\"alt\":\"Coffee-Cup\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span style=\\\"color: #6fb910;\\\"><strong>Boyd’s Being Acquired by Farmer Bros for Approximately $58.6M<\\/strong><\\/span><\\/p>\\n<p style=\\\"text-align: left;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/p>\\n<p style=\\\"text-align: left;\\\">Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas.<\\/p>\\n<p style=\\\"text-align: left;\\\"><\\/p>\\n<p><strong><span style=\\\"color: #6fb910;\\\"><a href=\\\"http:\\/\\/mailpoet.info\\/\\\" style=\\\"color: #6fb910;\\\">Read more<\\/a><\\/span><\\/strong><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"22.5px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#d6d6d6\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Logo-1.png\",\"alt\":\"Coffee-Logo-1\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"71px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.0.0-rc.2.0.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #000000;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #000000;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #000000;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#0f0f0f\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/coffee/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(56,0,'Vlogger','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#aaaaaa\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f3ba25\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"180px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center; font-size: 80px;\\\"><span style=\\\"color: #ffffff;\\\"><strong>STACEY<\\/strong><\\/span><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"145px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#5527a6\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Vlogging About Beauty, Fashion, Life Hacks & My Life<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Youtube.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#7b0000\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"63px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 11px;\\\"><span style=\\\"color: #ffffff;\\\">L A T E S T V I D E O<\\/span><\\/p>\\n <h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Roses are red...<\\/strong><\\/span><\\/h1>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-PlayButton.png\",\"alt\":\"Vlogger-PlayButton\",\"fullWidth\":false,\"width\":\"50px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e9e9e9\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Images-1.jpg\",\"alt\":\"Vlogger-Images-1\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Mixing it up<\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Images-2.jpg\",\"alt\":\"Vlogger-Images-2\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Front row seats!<\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Images-3.jpg\",\"alt\":\"Vlogger-Images-3\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\">Max has a birthday!<\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e9e9e9\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"Check out all my latest videos\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#5527a6\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"225px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-WhoAmI.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"109px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #5527a6;\\\"><strong>This is my story<\\/strong><\\/span><\\/h1>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><\\/span><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Go to my Youtube Page\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#5527a6\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"183px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"71px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#5527a6\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Never miss a thing<\\/strong><\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#3a147d\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"32px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong><span style=\\\"color: #ffffff;\\\">STACEY<\\/span><\\/strong><\\/h3>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#9d82cd\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#5527a6\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#5527a6\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"225px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#ffffff\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#9d82cd\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"32px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#aaaaaa\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/vlogger/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(57,0,'Birds','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#26b6cf\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Logo-1.png\",\"alt\":\"Birds-Logo\",\"fullWidth\":false,\"width\":\"178px\",\"height\":\"127px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#12616f\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Header-2.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"112px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\"><strong>New Season<\\/strong><\\/span><\\/h1>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut in mattis neque. <\\/span><span style=\\\"color: #ffffff;\\\">Quisque sed massa eu tellus efficitur dictum at sed augue. <span>Ut in mattis neque.<\\/span><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read the whole story\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#26b6cf\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"159px\",\"lineHeight\":\"37px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"90px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-1.jpg\",\"alt\":\"Birds-Images-1\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"53px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Puffin Sightings<\\/strong><\\/h3>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut in mattis neque. Quisque sed massa eu tellus efficitur dictum at sed augue. <\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#26b6cf\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"82px\",\"lineHeight\":\"29px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>This month\'s best pictures<\\/strong><\\/h3>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-6.jpg\",\"alt\":\"Birds-Images-6\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-7.jpg\",\"alt\":\"Birds-Images-7\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-5.jpg\",\"alt\":\"Birds-Images-5\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-2.jpg\",\"alt\":\"Birds-Images-2\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-3.jpg\",\"alt\":\"Birds-Images-3\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Images-4.jpg\",\"alt\":\"Birds-Images-4\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/580b57fbd9996e24bc43bb61.png\",\"alt\":\"580b57fbd9996e24bc43bb61\",\"fullWidth\":true,\"width\":\"671px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong><span style=\\\"color: #ffffff;\\\">Tweeting isn\'t just for birds...<\\/span><\\/strong><\\/h3>\\n <p><span style=\\\"color: #ffffff;\\\">We love to hear your thoughts about this newsletter, as well as being able to share your amazing pictures with us. Use the hashtag <strong>#birdwatch<\\/strong> and we\'ll share the best pictures here each month.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"circles\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#26b6cf\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#26b6cf\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Logo-1.png\",\"alt\":\"Birds-Logo\",\"fullWidth\":false,\"width\":\"164px\",\"height\":\"127px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#147080\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#12616f\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Roboto\",\"fontSize\":\"36px\"},\"h2\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Roboto\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#3d3d3d\",\"fontFamily\":\"Roboto\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#222222\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#26b6cf\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"82px\",\"lineHeight\":\"29px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"#2d4b50\",\"padding\":\"5.5px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"4px\",\"borderColor\":\"#4a6b70\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#147080\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#12616f\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"112px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#12616f\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/birds/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(58,0,'Engineering','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#1d1d1d\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Logo.png\",\"alt\":\"Engineering-Logo\",\"fullWidth\":true,\"width\":\"150px\",\"height\":\"506px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #808080;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #808080;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Header-1.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"295px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><em><span style=\\\"color: #ffffff;\\\">Let your dreams take flight...<\\/span><\\/em><\\/strong><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Bearing.png\",\"alt\":\"Engineering-Bearing\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2><strong><span style=\\\"color: #ffffff;\\\">The all-new RoundBros 6206 ball bearing.<\\/span><\\/strong><\\/h2>\\n <p><span style=\\\"color: #cccccc;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum. Donec vel purus urna. Sed dui sapien, congue non accumsan euismod, ultrices ut dui.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#1d1d1d\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"3px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"134px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><em><span style=\\\"color: #ffffff;\\\">...and stay grounded in safety<\\/span><\\/em><\\/strong><\\/h1>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Footer-c.jpg\",\"alt\":\"Engineering-Footer-c\",\"fullWidth\":true,\"width\":\"928px\",\"height\":\"661px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2><strong><span style=\\\"color: #ffffff;\\\">Bearing sets are back in stock for a limited time!<\\/span><\\/strong><\\/h2>\\n <p><span style=\\\"color: #cccccc;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#1d1d1d\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"3px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"134px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Bearing-2.png\",\"alt\":\"Engineering-Bearing-2\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"574px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"2px\",\"borderColor\":\"#424242\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Logo.png\",\"alt\":\"Engineering-Logo\",\"fullWidth\":true,\"width\":\"100px\",\"height\":\"506px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a><\\/p>\\n <p><a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><span style=\\\"color: #999999;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#5aa9cc\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Roboto\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Roboto\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#1d1d1d\"},\"body\":{\"backgroundColor\":\"#1d1d1d\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#1d1d1d\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"3px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"134px\",\"lineHeight\":\"33px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"2px\",\"borderColor\":\"#424242\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#5aa9cc\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/engineering/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(59,0,'Branding Agency News','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #808080;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #808080;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/Branding-Logo.png\",\"alt\":\"Branding-Logo\",\"fullWidth\":false,\"width\":\"122px\",\"height\":\"117px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><span style=\\\"color: #bdbdbd;\\\"><strong>B I G N E W S<\\/strong><\\/span><\\/p>\\n <h1>Branded is getting a refresh<\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/Branding-Image01.jpg\",\"alt\":\"Branding-Image01\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<p><span style=\\\"color: #999999;\\\"><strong><\\/strong><\\/span><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu quam risus. Quisque tempor sodales tortor. Cras enim orci, bibendum vitae sollicitudin porttitor, eleifend eu metus. Aliquam a fringilla libero. Vivamus turpis orci, viverra in vehicula vitae, imperdiet et ex. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"> Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"20px\",\"fontColor\":\"#0e0e0e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#dfdfdf\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>Design starts with a pencil and paper<\\/h3>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu quam risus. Quisque tempor sodales tortor.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"> Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"20px\",\"fontColor\":\"#0e0e0e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/Branding-Image02.jpg\",\"alt\":\"Branding-Image02\",\"fullWidth\":false,\"width\":\"540px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3>How television has impacted branding<\\/h3>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eu quam risus. Quisque tempor sodales tortor.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"> Read more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"20px\",\"fontColor\":\"#0e0e0e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/Branding-Image03.jpg\",\"alt\":\"Branding-Image03\",\"fullWidth\":false,\"width\":\"1200px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\">Some of our recent branding<\\/h3>\\n <p style=\\\"text-align: center;\\\">Looking for some work from us? Get in touch and we\'ll see what we can do.<\\/p>\"},{\"type\":\"button\",\"text\":\"Get in touch here >\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"157px\",\"lineHeight\":\"20px\",\"fontColor\":\"#0e0e0e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/greens-food-suppliers.png\",\"alt\":\"greens-food-suppliers\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"418px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/james-and-sons.png\",\"alt\":\"james-and-sons\",\"fullWidth\":false,\"width\":\"156px\",\"height\":\"692px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/fast-banana.png\",\"alt\":\"fast-banana\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"325px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/space-cube.png\",\"alt\":\"space-cube\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"487px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/the-dance-studio.png\",\"alt\":\"the-dance-studio\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"365px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/yoga-baby.png\",\"alt\":\"yoga-baby\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"248px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/beauty-box.png\",\"alt\":\"beauty-box\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"304px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/cheshire-county-hygiene-services.png\",\"alt\":\"cheshire-county-hygiene-services\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"393px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/crofts-accountants.png\",\"alt\":\"crofts-accountants\",\"fullWidth\":false,\"width\":\"900px\",\"height\":\"229px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#eeeeee\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"44px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/Branding-Logo.png\",\"alt\":\"Branding-Logo\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"117px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><span style=\\\"color: #808080;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#222222\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"36px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"30px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"24px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#eeeeee\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Get in touch here >\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#ffffff\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"157px\",\"lineHeight\":\"20px\",\"fontColor\":\"#0e0e0e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#dfdfdf\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#222222\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"left\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/branding-agency-news/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(60,0,'WordPress Theme','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b8dae3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arvo\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#222222\",\"textDecoration\":\"none\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#051137\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#051137\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Logo.png\",\"alt\":\"Wordpress-Logo\",\"fullWidth\":false,\"width\":\"260px\",\"height\":\"177px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"22px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Header-b.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#2d557f\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">ThemeZone presents...<\\/span><\\/h3>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Header-img.png\",\"alt\":\"Wordpress-Header-img\",\"fullWidth\":false,\"width\":\"1134px\",\"height\":\"898px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">The Winter Theme Bundle<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida.<\\/span><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Take a look\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#1e986a\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"132px\",\"lineHeight\":\"50px\",\"fontColor\":\"#1a4f66\",\"fontFamily\":\"Arvo\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"44px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Fully customisable and ready to use<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida.<\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Image-1.jpg\",\"alt\":\"Wordpress-Image-1\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"340px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\">Beautiful, simple design<\\/span><\\/h2>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Image-2.jpg\",\"alt\":\"Wordpress-Image-2\",\"fullWidth\":true,\"width\":\"541px\",\"height\":\"454px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#051137\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Installation is super easy<\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida.<\\/span><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#051137\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #2ecd91;\\\"><strong>1<\\/strong><\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/span><\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #2ecd91;\\\"><strong><span>2<\\/span><\\/strong><\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/span><\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #2ecd91;\\\"><strong><span>3<\\/span><\\/strong><\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.<\\/span><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#051137\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b8dae3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b8dae3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Logo-Footer.png\",\"alt\":\"Wordpress-Logo-Footer\",\"fullWidth\":false,\"width\":\"190px\",\"height\":\"177px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arvo\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#051137\",\"textDecoration\":\"underline\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arvo\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arvo\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arvo\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arvo\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#b8dae3\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Take a look\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#1e986a\",\"borderWidth\":\"0px\",\"borderRadius\":\"40px\",\"borderStyle\":\"solid\",\"width\":\"132px\",\"lineHeight\":\"50px\",\"fontColor\":\"#1a4f66\",\"fontFamily\":\"Arvo\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"dotted\",\"borderWidth\":\"4px\",\"borderColor\":\"#21377e\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arvo\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#051137\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"email\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Email\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arvo\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#222222\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/word-press-theme/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(61,0,'Drone','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#242424\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#070707\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Logo.png\",\"alt\":\"Drone-Logo\",\"fullWidth\":false,\"width\":\"138px\",\"height\":\"228px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">TAKE TO THE SKIES<\\/span><\\/strong><\\/h1>\"},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #f0f0f0;\\\">The Frontier 7S is the world’s first<\\/span><\\/h3>\\n<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #f0f0f0;\\\">mind-controlled aerial drone<\\/span><\\/h3>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Header.jpg\",\"alt\":\"Drone-Header\",\"fullWidth\":false,\"width\":\"470px\",\"height\":\"462px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"39px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Fly with your mind<\\/strong><\\/h2>\\n<p style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt. Duis viverra imperdiet magna, a facilisis diam scelerisque at. Nunc at quam ligula. Nullam ut magna velit.<\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Image-1.jpg\",\"alt\":\"Drone-Image-1\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"55px\"}}},{\"type\":\"text\",\"text\":\"<h2><strong>Ready to travel to you<\\/strong><\\/h2>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt.<\\/p>\"},{\"type\":\"button\",\"text\":\"Find Out More\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#000000\",\"borderColor\":\"#000000\",\"borderWidth\":\"1px\",\"borderRadius\":\"10px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#080808\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #ffffff;\\\">Don\'t just take our word for it...<\\/span><\\/strong><\\/h2>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Video.jpg\",\"alt\":\"Drone-Video\",\"fullWidth\":true,\"width\":\"1280px\",\"height\":\"760px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Check out our social media platforms and keep up-to-date with the latest news and events happening near you.<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#242424\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#242424\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Logo-Light-1.png\",\"alt\":\"Drone-Logo-Light\",\"fullWidth\":false,\"width\":\"120px\",\"height\":\"72px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#242424\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #aeaeae;\\\">Address Line 1 <\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #aeaeae;\\\">Address Line 2 <\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #aeaeae;\\\">City <\\/span><\\/p>\\n<p style=\\\"text-align: center;\\\"><span style=\\\"color: #aeaeae;\\\">Country<\\/span><\\/p>\"},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #ffffff;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #ffffff;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #ffffff;\\\">Manage your subscription<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Lucida\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\"},\"link\":{\"fontColor\":\"#070707\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#242424\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"39px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/drone/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(62,0,'Fashion Blog','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #999999;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #999999;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Logo-1.png\",\"alt\":\"Fashion-Logo-1\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"38px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#66cbba\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"170px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center; background-color: #ffffff; line-height: 1.2; margin: 0!important; padding: 15px 10px 10px 10px;\\\"><strong>The new season is here<\\/strong><\\/h2>\\n <p style=\\\"text-align: center; background-color: #ffffff; padding: 10px; margin: 0!important;\\\"><strong><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus et pellentesque<\\/span><\\/strong><\\/p>\\n <p style=\\\"text-align: center; background-color: #ffffff; padding: 10px 10px 30px 10px; margin: 0!important;\\\"><a href=\\\"http:\\/\\/www.mystore.com\\\" style=\\\"background-color: #222222; color: #ffffff!important; padding: 10px; text-decoration: none!important; font-weight: bold;\\\">Start Shopping<\\/a><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"170px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Gift.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#66cbba\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: right;\\\"><strong>In a hurry?<\\/strong><\\/h3>\\n <p style=\\\"text-align: right;\\\">Grab a gift card from our online shop.<\\/p>\\n <p style=\\\"text-align: right;\\\">Treat yourself or that special someone in your life.<\\/p>\"},{\"type\":\"button\",\"text\":\"Buy a gift card\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"114px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"right\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>Keep in touch with us online<\\/strong><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Logo-1.png\",\"alt\":\"Fashion-Logo-1\",\"fullWidth\":true,\"width\":\"142px\",\"height\":\"38px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #000000;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #000000;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #000000;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"13px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Buy a gift card\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#222222\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"114px\",\"lineHeight\":\"34px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"fontWeight\":\"bold\",\"textAlign\":\"right\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"170px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/fashion-blog/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(63,0,'Fashion Store','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/tulip-2.png\",\"alt\":\"tulip\",\"fullWidth\":false,\"width\":\"26.5px\",\"height\":\"64px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"text\",\"text\":\"<h1><strong>TULIP PARK<\\/strong><\\/h1>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"85px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: right;\\\"><span style=\\\"color: #bcbcbc;\\\">Since 1987<\\/span><\\/h3>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f8f8f8\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"486px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">Autumn\\/Winter<\\/span><\\/h1>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>The Autumn\\/Winter Range at Tulip Park<\\/strong><\\/h2>\\n<p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-1.jpg\",\"alt\":\"Fashion-Items-1\",\"fullWidth\":true,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"36px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Title Goes Here<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"36px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Title Goes Here<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-2.jpg\",\"alt\":\"Fashion-Items-2\",\"fullWidth\":true,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-3.jpg\",\"alt\":\"Fashion-Items-3\",\"fullWidth\":true,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"36px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Title Goes Here<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"button\",\"text\":\"Check out the full range here\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#cdcdcd\",\"borderColor\":\"#e4e4e4\",\"borderWidth\":\"1px\",\"borderRadius\":\"3px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"1px\",\"borderColor\":\"#aaaaaa\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>New in this week...<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-4.jpg\",\"alt\":\"Fashion-Items-4\",\"fullWidth\":true,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-5.jpg\",\"alt\":\"Fashion-Items-5\",\"fullWidth\":true,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-6.jpg\",\"alt\":\"Fashion-Items-6\",\"fullWidth\":true,\"width\":\"364px\",\"height\":\"291px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#12223b\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#f0f0f0\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f0f0f0\"}},\"blocks\":[{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>TULIP PARK<\\/strong><\\/h2>\"}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px;\\\"><span style=\\\"color: #000000;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #000000;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #000000;\\\">Manage your subscription<\\/a><\\/span><br \\/><span style=\\\"color: #000000;\\\">Add your postal address here!<\\/span><\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\"},\"link\":{\"fontColor\":\"#008282\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f0f0f0\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"default\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/01-social\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"}]},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"486px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/fashion/thumbnail.20190411-1500.jpeg',1,NULL,'2021-09-06 16:26:02'),(64,0,'Women Fashion Store','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f5f5f5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f5f5f5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 12px; text-align: left;\\\">October 2018 Edition<\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #b76e97; font-size: 12px;\\\">View this in your browser.<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f5f5f5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Logo.png\",\"alt\":\"Fashion-Logo\",\"fullWidth\":false,\"width\":\"157px\",\"height\":\"48px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"90px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>October 2018<\\/strong><\\/span><\\/p>\\n <h1 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>Autumn Season<\\/strong><\\/span><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: left;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. Sed aliquam, ex ac lacinia tempus, enim urna luctus odio, at consequat leo ante non tellus.<\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span><\\/span><\\/p>\\n <p style=\\\"text-align: left;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. <\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f6e4e4\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Image-1.jpg\",\"alt\":\"Fashion-Image-1\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<h2><span style=\\\"color: #b76e97;\\\"><strong>$59<\\/strong><\\/span><\\/h2>\\n <h3><strong>New Outfit<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. <span>Lorem ipsum dolor sit amet.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#ae6ca1\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ebe8e8\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<h2><span style=\\\"color: #b76e97;\\\"><strong>$159<\\/strong><\\/span><\\/h2>\\n <h3><strong>New Outfit<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. <span>Lorem ipsum dolor sit amet.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#ae6ca1\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Image-2.jpg\",\"alt\":\"Fashion-Image-2\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f6e4e4\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Image-3.jpg\",\"alt\":\"Fashion-Image-3\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<h2><span style=\\\"color: #b76e97;\\\"><strong>$25<\\/strong><\\/span><\\/h2>\\n <h3><strong>New Outfit<\\/strong><\\/h3>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. <span>Lorem ipsum dolor sit amet.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#ae6ca1\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Instagram.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/glyph-logo_May2016.png\",\"alt\":\"glyph-logo_May2016\",\"fullWidth\":false,\"width\":\"52px\",\"height\":\"504px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}},{\"type\":\"text\",\"text\":\"<h2><span style=\\\"color: #000000;\\\"><strong>Our new Instagram Page<\\/strong><\\/span><\\/h2>\\n <p><span style=\\\"color: #000000;\\\">We have just released our brand new Instagram page.<\\/span><\\/p>\\n <p><span style=\\\"color: #000000;\\\">We\'ll be keeping everyone up to date with the latest<\\/span><\\/p>\\n <p><span style=\\\"color: #000000;\\\">fashion and style advice every day.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Check it out\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#151515\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"114px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f5f5f5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#f5f5f5\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ae70ad\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#626262\",\"fontFamily\":\"Noticia Text\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"h3\":{\"fontColor\":\"#505050\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#21759b\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#f5f5f5\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#ae6ca1\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"100px\",\"lineHeight\":\"35px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ae70ad\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":true,\"featuredImagePosition\":\"right\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"posts\",\"offset\":0,\"terms\":[],\"search\":\"\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/fashion-blog-a/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'); INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (65,0,'Photography','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Logo.png\",\"alt\":\"Photography-Logo\",\"fullWidth\":false,\"width\":\"160px\",\"height\":\"141px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"42px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"line-height: 48px;\\\"><strong>The big photos from last week, straight to your inbox.<\\/strong><\\/h1>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Images-1.jpg\",\"alt\":\"Photography-Images-1\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong><span style=\\\"color: #000000;\\\">Canyon<\\/span><\\/strong><\\/p>\\n <p><span style=\\\"color: #000000;\\\">\\ud83d\\udcf7 Brodie Vissers<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"button\",\"text\":\"View all work\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#111111\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"140px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"right\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Images-2.jpg\",\"alt\":\"Photography-Images-2\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong><span style=\\\"color: #000000;\\\">Rooftopper<\\/span><\\/strong><\\/p>\\n <p><span style=\\\"color: #000000;\\\">\\ud83d\\udcf7 Stan Johnson<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"button\",\"text\":\"View all work\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#111111\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"140px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"right\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Images-3.jpg\",\"alt\":\"Photography-Images-3\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong><span style=\\\"color: #000000;\\\">Gold<\\/span><\\/strong><\\/p>\\n <p><span style=\\\"color: #000000;\\\">\\ud83d\\udcf7 Nicole De Khors<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"button\",\"text\":\"View all work\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#111111\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"140px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"right\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"line-height: 48px; text-align: center;\\\"><strong>Fresh inspiration<\\/strong><\\/h1>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-1.jpg\",\"alt\":\"Photography-Squares-1\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-2.jpg\",\"alt\":\"Photography-Squares-2\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-3.jpg\",\"alt\":\"Photography-Squares-3\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-4.jpg\",\"alt\":\"Photography-Squares-4\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-5.jpg\",\"alt\":\"Photography-Squares-5\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-6.jpg\",\"alt\":\"Photography-Squares-6\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-7.jpg\",\"alt\":\"Photography-Squares-7\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-8.jpg\",\"alt\":\"Photography-Squares-8\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Squares-9.jpg\",\"alt\":\"Photography-Squares-9\",\"fullWidth\":true,\"width\":\"700px\",\"height\":\"700px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h1 style=\\\"line-height: 48px; text-align: center;\\\"><strong>Stay focused<\\/strong><\\/h1>\\n <p style=\\\"text-align: center;\\\">We\'re always keeping our social media feeds up to date with the latest images from our photographers. Check them out below.<\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"29px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#2d2d2d\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Logo.png\",\"alt\":\"Photography-Logo\",\"fullWidth\":false,\"width\":\"108px\",\"height\":\"141px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><span style=\\\"color: #999999;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"13px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"16px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#111111\"},\"body\":{\"backgroundColor\":\"#111111\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"View all work\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#111111\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"140px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"right\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"29px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#2d2d2d\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Courier New\",\"fontSize\":\"13px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#ffffff\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/photography/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(66,0,'Jazz Club','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#0b0821\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#898989\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-logo.png\",\"alt\":\"Jazz-logo\",\"fullWidth\":false,\"width\":\"324px\",\"height\":\"607px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Images-1.jpg\",\"alt\":\"Jazz-Images-1\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"875px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2><span>29th March 2019<\\/span><\\/h2>\\n <h1><span>James Patterson<\\/span><\\/h1>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get tickets\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e30095\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: right;\\\"><span>14th April 2019<\\/span><\\/h2>\\n <h1 style=\\\"text-align: right;\\\"><span>Samantha Morris<\\/span><\\/h1>\\n <p style=\\\"text-align: right;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get tickets\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e30095\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"right\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Images-2.jpg\",\"alt\":\"Jazz-Images-2\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"875px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Images-3.jpg\",\"alt\":\"Jazz-Images-3\",\"fullWidth\":false,\"width\":\"800px\",\"height\":\"875px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h2><span>3rd May 2019<\\/span><\\/h2>\\n <h1><span>Buster Smith<\\/span><\\/h1>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Get tickets\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e30095\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ff7b0e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"34px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #a04d08;\\\"><strong>J A Z Z C L U B P R E S E N T S<\\/strong><\\/span><\\/p>\\n <h1 style=\\\"text-align: center; font-size: 52px;\\\"><span style=\\\"color: #ffffff;\\\">24th Jazz Festival<\\/span><\\/h1>\\n <h3 style=\\\"text-align: center;\\\"><strong><span style=\\\"color: #a04d08;\\\">5 - 14 August 2018<\\/span><\\/strong><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/span><\\/p>\\n <p><span style=\\\"color: #ffffff;\\\"><\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Social.jpg\",\"alt\":\"Jazz-Social\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"193px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"34px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-logo.png\",\"alt\":\"Jazz-logo\",\"fullWidth\":false,\"width\":\"144px\",\"height\":\"607px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#e30095\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#848486\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arvo\",\"fontSize\":\"26px\"},\"h2\":{\"fontColor\":\"#e30095\",\"fontFamily\":\"Arvo\",\"fontSize\":\"20px\"},\"h3\":{\"fontColor\":\"#e30095\",\"fontFamily\":\"Arvo\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#e30095\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#0b0821\"},\"body\":{\"backgroundColor\":\"#0b0821\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"3\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h3\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read the post\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"160px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"automatedLatestContentLayout\",\"terms\":[]},\"button\":{\"text\":\"Get tickets\",\"url\":\"[postLink]\",\"styles\":{\"block\":{\"backgroundColor\":\"#e30095\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"90px\",\"lineHeight\":\"36px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#e30095\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"left\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}},\"type\":\"divider\"},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\",\"type\":\"posts\",\"offset\":10,\"terms\":[],\"search\":\"\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"34px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#898989\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/jazz-club/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(67,0,'Guitarist','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Logo.png\",\"alt\":\"Guitarist-Logo\",\"fullWidth\":false,\"width\":\"184px\",\"height\":\"179px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"26px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-grey\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"25px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#949494\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"700px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"250px\"}}},{\"type\":\"text\",\"text\":\"<h3><strong>Exit Stage Right<\\/strong><\\/h3>\\n <p><span style=\\\"color: #999999;\\\">A brand new album releasing this summer on <span style=\\\"color: #ffffff;\\\">iTunes<\\/span> and <span style=\\\"color: #1db954;\\\">Spotify<\\/span><\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"95px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"normal\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"130px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #27282e;\\\"><strong>My recording setup<\\/strong><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #5a5c66;\\\">A lot of people have been asking how I record my albums, so I thought I would write a quick blog post to explain<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"95px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Images-1-1.jpg\",\"alt\":\"Guitarist-Images-1\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"1000px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Images-2-1.jpg\",\"alt\":\"Guitarist-Images-2\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"1000px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"130px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #27282e;\\\"><strong>Life on the road<\\/strong><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #5a5c66;\\\">Not many people know what it\'s like to travel all over the world and perform every night in many different places<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"95px\",\"lineHeight\":\"30px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><strong>New tour dates<\\/strong><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #999999;\\\">Come see me perform new tracks from the album<\\/span><\\/p>\"},{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"14px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#37383e\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"March 7th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Metro Radio Arena - Newcastle Upon Tyne<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"March 8th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">First Direct Arena<\\/span><\\/p>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">- Leeds<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"March 9th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Liverpool Echo Arena - Liverpool<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"March 11th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">The Brighton Centre - Brighton<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"March 12th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Motorpoint Arena Nottingham - Nottingham<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"button\",\"text\":\"March 13th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Motorpoint Arena Cardiff - Cardiff<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"14px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#37383e\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#27282e\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Logo.png\",\"alt\":\"Guitarist-Logo\",\"fullWidth\":true,\"width\":\"176px\",\"height\":\"179px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/><span style=\\\"color: #999999;\\\">Add your postal address here!<\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#4c537e\",\"textDecoration\":\"none\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#27282e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#27282e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#27282e\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#27282e\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"March 13th 2019\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#4c537e\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"288px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"16px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"14px\",\"borderStyle\":\"dashed\",\"borderWidth\":\"2px\",\"borderColor\":\"#37383e\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#4c537e\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-grey\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#949494\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/guitarist/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(68,0,'Healthy Food Blog','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#323232\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#323232\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<p><strong><span style=\\\"color: #ffffff; font-size: 14px;\\\">[date:mtext] [date:y] Edition<\\/span><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#323232\",\"height\":\"22px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: right; font-size: 12px;\\\"><span style=\\\"color: #ed682a;\\\"><strong><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #ed682a;\\\">View this email in your browser ><\\/a><\\/strong><\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-Logo.png\",\"alt\":\"HealthyFood-Logo\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"296px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"25px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"height\":\"121px\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]}]},{\"type\":\"container\",\"columnLayout\":\"2_1\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-Header-1.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><strong><span style=\\\"color: #ffffff;\\\">Welcome back!<\\/span><\\/strong><\\/h1>\\n <p><span style=\\\"color: #ffffff;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nisl massa, fringilla id rutrum sed, porttitor in risus. Fusce dui erat, bibendum a accumsan non.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"56px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>It\'s November - time to plant those \\ud83c\\udf36<\\/strong><\\/span><\\/h2>\\n <p><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nisl massa, fringilla id rutrum sed, porttitor in risus. Fusce dui erat, bibendum a accumsan non.<\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\"><\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\">Tag your chilli images with #novemberheat for your chance to win a box of spicy treats!<\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\"><\\/span><\\/p>\\n <h3><span style=\\\"color: #ed682a;\\\"><strong>#novemberheat<\\/strong><\\/span><\\/h3>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-Instagram.jpg\",\"alt\":\"HealthyFood-Instagram\",\"fullWidth\":true,\"width\":\"507px\",\"height\":\"600px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: left;\\\"><strong><span style=\\\"color: #ffffff;\\\">Start eating healthy today<\\/span><\\/strong><\\/h1>\\n <h3><strong><span style=\\\"color: #ffffff;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nisl massa, fringilla id rutrum sed, porttitor in risus. Fusce dui erat, bibendum a accumsan non.<\\/span><\\/span><\\/strong><\\/h3>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-CouponImage.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-CouponImage.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/5a5b7bf514d8c4188e0b08fc-1024x766.png\",\"alt\":\"5a5b7bf514d8c4188e0b08fc\",\"fullWidth\":true,\"width\":\"298px\",\"height\":\"524px\",\"styles\":{\"block\":{\"textAlign\":\"right\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><strong>Get 20% off a box<\\/strong><\\/h3>\\n <p><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nisl massa, fringilla<\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\">id rutrum sed, porttitor in risus.<\\/span><\\/p>\"},{\"type\":\"button\",\"text\":\"CouPon_Cod3\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\",\"borderColor\":\"#323232\",\"borderWidth\":\"2px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#323232\",\"fontFamily\":\"Courier New\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-CouponImage.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"height\":\"26px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\"><strong>Your weekly recipe list<\\/strong><\\/span><\\/h2>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #333333;\\\">Cook delicious meals right now - here\'s your list for this week.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>MONDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-01-Monday.jpg\",\"alt\":\"HealthyFood-01-Monday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Spicy Prawn Broth\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>TUESDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-02-Tuesday.jpg\",\"alt\":\"HealthyFood-02-Tuesday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Classic Pizza\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>WEDNESDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-03-Wednesday.jpg\",\"alt\":\"HealthyFood-03-Wednesday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Salad Roll\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"9px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#ed682a\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>THURSDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-04-Thursday.jpg\",\"alt\":\"HealthyFood-04-Thursday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Shellfish Pasta\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>FRIDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-05-Friday.jpg\",\"alt\":\"HealthyFood-05-Friday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Thai Green Curry\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>SATURDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-06-Saturday.jpg\",\"alt\":\"HealthyFood-06-Saturday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Stuffed Turkey\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"9px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#ed682a\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>SUNDAY<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-07-Sunday.jpg\",\"alt\":\"HealthyFood-07-Sunday\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"button\",\"text\":\"Lemon Cake\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><span style=\\\"color: #333333;\\\"><strong>Want more recipes?<\\/strong><\\/span><\\/h2>\\n <p><span style=\\\"color: #333333;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam nisl massa, fringilla id rutrum sed, porttitor in risus. Fusce dui erat, bibendum a accumsan non.<\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\"><\\/span><\\/p>\\n <p><span style=\\\"color: #333333;\\\">For all of our recipes, check out our website or visit one of our social media platforms below. We\'d love to hear what you think about our choices this week!<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png?mailpoet_version=3.14.1\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"9px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#ed682a\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#e3e3e3\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-Logo.png\",\"alt\":\"HealthyFood-Logo\",\"fullWidth\":false,\"width\":\"110px\",\"height\":\"296px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #ed682a;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #ed682a;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #ed682a;\\\">Manage your subscription<\\/a><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#ed682a\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#e3e3e3\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Lemon Cake\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#ed682a\",\"borderColor\":\"#323232\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"255px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"9px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#ed682a\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#e39171\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/healthy-food-blog/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(69,0,'Software','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Logo.png\",\"alt\":\"Software-Logo\",\"fullWidth\":false,\"width\":\"140px\",\"height\":\"122px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><strong><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View online<\\/a><\\/strong><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#212327\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center; line-height: 46px;\\\"><span style=\\\"color: #212327;\\\"><strong>Your music.<br \\/>Your way.<\\/strong><\\/span><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Header.jpg\",\"alt\":\"Software-Header\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><strong>Find music fast<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida. In eu vestibulum orci, sit amet ultrices mauris.<\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#212327\",\"borderColor\":\"#212327\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"124px\",\"lineHeight\":\"39px\",\"fontColor\":\"#cacaca\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Image-1.jpg\",\"alt\":\"Software-Image-1\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Image-2.jpg\",\"alt\":\"Software-Image-2\",\"fullWidth\":true,\"width\":\"800px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: left;\\\"><strong>Keep up with the trend<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida. In eu vestibulum orci, sit amet ultrices mauris.<\\/p>\"},{\"type\":\"button\",\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#212327\",\"borderColor\":\"#212327\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"124px\",\"lineHeight\":\"39px\",\"fontColor\":\"#cacaca\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Get the app now for free<\\/strong><\\/h2>\\n <p style=\\\"text-align: center;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida.<\\/p>\"},{\"type\":\"button\",\"text\":\"Download for free\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#dbbb00\",\"borderColor\":\"#212327\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"199px\",\"lineHeight\":\"50px\",\"fontColor\":\"#212327\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"18px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Logo.png\",\"alt\":\"Software-Logo\",\"fullWidth\":false,\"width\":\"140px\",\"height\":\"122px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Youtube.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#212327\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#212327\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#212327\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"40px\"},\"h2\":{\"fontColor\":\"#212327\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"26px\"},\"h3\":{\"fontColor\":\"#212327\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#212327\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#dbbb00\"},\"body\":{\"backgroundColor\":\"#dbbb00\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Find out more\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#212327\",\"borderColor\":\"#212327\",\"borderWidth\":\"0px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"124px\",\"lineHeight\":\"39px\",\"fontColor\":\"#cacaca\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"14px\",\"fontWeight\":\"bold\",\"textAlign\":\"left\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#212327\",\"textDecoration\":\"underline\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather Sans\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#212327\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/software/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(70,0,'Makeup Blog','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#adadad\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Logo.png\",\"alt\":\"WomensLifestyle-Logo\",\"fullWidth\":false,\"width\":\"130px\",\"height\":\"94px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center;\\\">Fashion Week Special<\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Header-1.jpg\",\"alt\":\"WomensLifestyle-Header-1\",\"fullWidth\":true,\"width\":\"900px\",\"height\":\"426px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque odio. Pellentesque nisl massa, ullamcorper eu gravida varius, mollis eu orci.<\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Breaker-1-1.jpg\",\"alt\":\"WomensLifestyle-Breaker-1-1\",\"fullWidth\":true,\"width\":\"900px\",\"height\":\"65px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c83142\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Image-1.png\",\"alt\":\"WomensLifestyle-Image-1\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\">Big announcement from top artists<\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span style=\\\"color: #e0cccc;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque odio. Pellentesque nisl massa, ullamcorper eu gravida varius, mollis eu orci.<\\/span><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Breaker-2.jpg\",\"alt\":\"WomensLifestyle-Breaker-2\",\"fullWidth\":true,\"width\":\"900px\",\"height\":\"65px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#6d3aa7\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#6d3aa7\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Image-2.png\",\"alt\":\"WomensLifestyle-Image-2\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"34px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: left;\\\"><span style=\\\"color: #ffffff;\\\">New Workshops to begin<\\/span><\\/h3>\\n <p style=\\\"text-align: left;\\\"><span style=\\\"color: #f6dff7;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque odio. Pellentesque nisl massa, ullamcorper eu gravida varius, mollis eu orci.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Breaker-3.jpg\",\"alt\":\"WomensLifestyle-Breaker-3\",\"fullWidth\":true,\"width\":\"900px\",\"height\":\"65px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#0f2f41\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#0f2f41\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Image-3.png\",\"alt\":\"WomensLifestyle-Image-3\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><\\/span><span style=\\\"color: #becbf7;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Image-4.png\",\"alt\":\"WomensLifestyle-Image-4\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><\\/span><span style=\\\"color: #becbf7;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Image-5.png\",\"alt\":\"WomensLifestyle-Image-5\",\"fullWidth\":false,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><span style=\\\"color: #ffffff;\\\"><\\/span><span style=\\\"color: #becbf7;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#0f2f41\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Breaker-4.jpg\",\"alt\":\"WomensLifestyle-Breaker-4\",\"fullWidth\":true,\"width\":\"900px\",\"height\":\"65px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Logo.png\",\"alt\":\"WomensLifestyle-Logo\",\"fullWidth\":false,\"width\":\"170px\",\"height\":\"40px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><span style=\\\"color: #000000;\\\"><strong><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #000000;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #000000;\\\">Manage your subscription<\\/a><\\/strong><\\/span><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Courier New\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Courier New\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Courier New\",\"fontSize\":\"20px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#adadad\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/lifestyle-blog-a/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(71,0,'Kids Shop','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"60px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center; font-size: 11px; letter-spacing: 3px;\\\"><strong>AUTUMN RANGE 2018<\\/strong><\\/p>\"},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Logo.png\",\"alt\":\"FashionKids-Logo\",\"fullWidth\":false,\"width\":\"200px\",\"height\":\"64px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"text-align: center; font-size: 52px; line-height: 1.2;\\\"><strong>IT\'S TIME <\\/strong><strong>TO EXPLORE<\\/strong><\\/h1>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"403px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c6d4dd\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Image-Square.jpg\",\"alt\":\"FashionKids-Image-Square\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\">Keep them warm this autumn with our whole new range just for your little ones<\\/h3>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Image-1-1.jpg\",\"alt\":\"FashionKids-Image-1-1\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#c6d4dd\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Image-Square-2.jpg\",\"alt\":\"FashionKids-Image-Square-2\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"113px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\">All of our clothes are easy to wash and are ready for your little explorers<\\/h3>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Logo.png\",\"alt\":\"FashionKids-Logo\",\"fullWidth\":false,\"width\":\"187px\",\"height\":\"30px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"social\",\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#21759b\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Georgia\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Georgia\",\"fontSize\":\"26px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Georgia\",\"fontSize\":\"24px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#21759b\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-color\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/fashion-shop/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(72,0,'Lifestyle Blog','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Logo-1.png\",\"alt\":\"WomensLifestyle-Logo\",\"fullWidth\":true,\"width\":\"160px\",\"height\":\"57px\",\"styles\":{\"block\":{\"textAlign\":\"left\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #b25088;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #b25088;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#b25187\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"440px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-HeaderDrop.jpg\",\"alt\":\"WomensLifestyle-HeaderDrop\",\"fullWidth\":true,\"width\":\"900px\",\"height\":\"61px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px; letter-spacing: 4px; text-align: center;\\\"><span style=\\\"color: #808080;\\\"><strong>FEATURED ARTICLE THIS MONTH<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: center;\\\"><strong>Business tips from top female executives<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #993366;\\\"><strong>1<\\/strong><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non est sed tellus pharetra facilisis quis vel lacus.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #993366;\\\"><strong>2<\\/strong><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non est sed tellus pharetra facilisis quis vel lacus.<\\/span><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><span style=\\\"color: #993366;\\\"><strong>3<\\/strong><\\/span><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non est sed tellus pharetra facilisis quis vel lacus.<\\/span><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"23px\"}}},{\"type\":\"button\",\"text\":\"Read the article\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#b25088\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"21px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Image-1.jpg\",\"alt\":\"WomensLifestyle-Image-1\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"71px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px; letter-spacing: 4px; text-align: left;\\\"><span style=\\\"color: #808080;\\\"><strong>PODCASTS<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: left;\\\"><strong>Does hard work really pay off?<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non est sed tellus pharetra facilisis quis vel lacus.<\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"71px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px; letter-spacing: 4px; text-align: left;\\\"><span style=\\\"color: #808080;\\\"><strong>PSYCHOLOGY<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: left;\\\"><strong>Closing deals can be easier than you think<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non est sed tellus pharetra facilisis quis vel lacus.<\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Image-2.jpg\",\"alt\":\"WomensLifestyle-Image-2\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Image-3.jpg\",\"alt\":\"WomensLifestyle-Image-3\",\"fullWidth\":true,\"width\":\"400px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"71px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"font-size: 11px; letter-spacing: 4px; text-align: left;\\\"><span style=\\\"color: #808080;\\\"><strong>TECHNOLOGY<\\/strong><\\/span><\\/p>\\n <h2 style=\\\"text-align: left;\\\"><strong>What email software is right for you?<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam non est sed tellus pharetra facilisis quis vel lacus.<\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"50px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Logo-1.png\",\"alt\":\"WomensLifestyle-Logo\",\"fullWidth\":false,\"width\":\"112px\",\"height\":\"57px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"social\",\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"pinterest\",\"link\":\"http:\\/\\/www.pinterest.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Pinterest.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Pinterest\"}]},{\"type\":\"footer\",\"text\":\"<p><strong><span style=\\\"color: #b25088;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\" style=\\\"color: #b25088;\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\" style=\\\"color: #b25088;\\\">Manage your subscription<\\/a><\\/span><\\/strong><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Arial\",\"fontSize\":\"15px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Arial\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Arial\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#21759B\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Read the article\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#b25088\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"50px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Arial\",\"fontSize\":\"16px\",\"fontWeight\":\"bold\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"circles\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"website\",\"link\":\"\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Website.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Website\"},{\"type\":\"socialIcon\",\"iconType\":\"pinterest\",\"link\":\"http:\\/\\/www.pinterest.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Pinterest.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Pinterest\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"right\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/lifestyle-blog-b/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(73,0,'Painter','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}},{\"type\":\"header\",\"text\":\"<p><a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"11px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#787878\",\"textDecoration\":\"none\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-Logo-bg.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#8289ca\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-Logo.png\",\"alt\":\"Painter-Logo\",\"fullWidth\":false,\"width\":\"305.9375px\",\"height\":\"93px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><a href=\\\"https:\\/\\/www.mailpoet.com\\\">Reviews & Submissions<\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><a href=\\\"https:\\/\\/www.mailpoet.com\\\">Essential Gear<\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><a href=\\\"https:\\/\\/www.mailpoet.com\\\">Latest Commissions<\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-Header.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}}},{\"type\":\"text\",\"text\":\"<h1><strong>Welcome back<\\/strong><\\/h1>\\n <p>It\'s been a big month for the studio and we\'d love to show you some of our recent work.<\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"35px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/186018-sktchy-2-nh-gutenCRALTBRBLOG.jpg\",\"alt\":\"186018-sktchy-2-nh-gutenCRALTBRBLOG\",\"fullWidth\":false,\"width\":\"520px\",\"height\":\"830px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"140px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/181215_2-laura-anderson-dog-fab-artistico-cpCRAltBRCRBlog.jpg\",\"alt\":\"181215_2-laura-anderson-dog-fab-artistico-cpCRAltBRCRBlog\",\"fullWidth\":false,\"width\":\"180px\",\"height\":\"1010px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/170204_sktchy_BlackChickenBrushPen2CRBR.jpg\",\"alt\":\"170204_sktchy_BlackChickenBrushPen2CRBR\",\"fullWidth\":false,\"width\":\"328px\",\"height\":\"686px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<h2 style=\\\"text-align: center;\\\"><strong>Latest from the blog<\\/strong><\\/h2>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/1812231-sktchy-1-jon-coxwell-fabriano-cpCRFeat-394x252.jpg\",\"alt\":\"1812231-sktchy-1-jon-coxwell-fabriano-cpCRFeat-394x252\",\"fullWidth\":false,\"width\":\"394px\",\"height\":\"252px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><span>Self-Assessment: 2018—Filling Journals, Using Up Paint<\\/span><\\/p>\\n <p><a href=\\\"https:\\/\\/www.mailpoet.com\\\">Read more ><\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/180830-2018-fair-32-pigeon-fabri-300-hpCRAltBRFeat-394x252.jpg\",\"alt\":\"180830-2018-fair-32-pigeon-fabri-300-hpCRAltBRFeat-394x252\",\"fullWidth\":false,\"width\":\"394px\",\"height\":\"252px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><span>Happy New Year 2019<\\/span><\\/p>\\n <p><a href=\\\"https:\\/\\/www.mailpoet.com\\\">Read more ><\\/a><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/180828-sktchy-t-c-c-hahn-expressions-cpCRAltBRCRFeat-394x252.jpg\",\"alt\":\"180828-sktchy-t-c-c-hahn-expressions-cpCRAltBRCRFeat-394x252\",\"fullWidth\":false,\"width\":\"394px\",\"height\":\"252px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p><span>Roz’s 2018 Minnesota State Fair Journal<\\/span><\\/p>\\n <p><a href=\\\"https:\\/\\/www.mailpoet.com\\\">Read more ><\\/a><\\/p>\"}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-SocialBack.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"64px\"}}},{\"type\":\"text\",\"text\":\"<h3 style=\\\"text-align: center;\\\"><strong>Stay in touch<\\/strong><\\/h3>\\n <p style=\\\"text-align: center;\\\"><span>Keep up-to-date with all of the work from the studio<\\/span><\\/p>\"},{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"styles\":{\"block\":{\"textAlign\":\"center\"}},\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}]},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"40px\"}}},{\"type\":\"text\",\"text\":\"<p style=\\\"text-align: center;\\\"><strong>Canvas Studio<\\/strong><\\/p>\\n <p style=\\\"text-align: center; font-size: 11px;\\\"><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\"}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"36px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#585858\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"Button\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#585858\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"},{\"type\":\"socialIcon\",\"iconType\":\"youtube\",\"link\":\"http:\\/\\/www.youtube.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Youtube.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Youtube\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"100px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Merriweather\",\"fontSize\":\"11px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#787878\",\"textDecoration\":\"none\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/painter/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'),(74,0,'Farmers Market','[\"standard\",\"all\"]','','{\"content\":{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#ffffff\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"header\",\"text\":\"<p><span style=\\\"color: #689f2c;\\\"><a href=\\\"[link:newsletter_view_in_browser_url]\\\" style=\\\"color: #689f2c;\\\">View this in your browser.<\\/a><\\/span><\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Top-2.jpg\",\"alt\":\"FarmersMarket-Top\",\"fullWidth\":true,\"width\":\"1200px\",\"height\":\"25px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Logo.png\",\"alt\":\"FarmersMarket-Logo\",\"fullWidth\":true,\"width\":\"200px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#252525\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"44px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"line-height: 32px;\\\"><strong><span style=\\\"color: #ffffff;\\\">COME JOIN US THIS WEEKEND<\\/span><\\/strong><\\/h1>\\n <p><span style=\\\"color: #ffffff;\\\">We\'re having a big bake sale this weekend starting 9am on Saturday morning. Pop down to see us and our merchants.<\\/span><\\/p>\\n <p><span style=\\\"color: #ffffff;\\\"><\\/span><\\/p>\\n <p><strong><a href=\\\"http:\\/\\/www.google.com\\\">Add date to my calendar ><\\/a><\\/strong><\\/p>\"}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Header.jpg\",\"alt\":\"FarmersMarket-Header\",\"fullWidth\":false,\"width\":\"1000px\",\"height\":\"800px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"30px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Images-1.jpg\",\"alt\":\"FarmersMarket-Images-1\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p>It\'s carrot season, which means it\'s the perfect time to try our carrot recipes!<\\/p>\"},{\"type\":\"button\",\"text\":\"CARROTS EVERYWHERE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#252525\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Images-2.jpg\",\"alt\":\"FarmersMarket-Images-2\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p>Don\'t throw out those leftover pumpkins - here\'s some tips for you.<\\/p>\"},{\"type\":\"button\",\"text\":\"PUMPED FOR PUMPKINS\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#252525\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Images-3.jpg\",\"alt\":\"FarmersMarket-Images-3\",\"fullWidth\":false,\"width\":\"500px\",\"height\":\"500px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}},{\"type\":\"text\",\"text\":\"<p>Our new bakery has opened and is making some of the best artisanal bread.<\\/p>\"},{\"type\":\"button\",\"text\":\"I KNEAD THIS\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#252525\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Video.jpg\",\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"#222222\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"55px\"}}},{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-PlayButton.png\",\"alt\":\"FarmersMarket-PlayButton\",\"fullWidth\":true,\"width\":\"100px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"61px\"}}},{\"type\":\"text\",\"text\":\"<h1 style=\\\"line-height: 32px;\\\"><strong><span style=\\\"color: #ffffff;\\\">A DAY IN THE LIFE<\\/span><\\/strong><\\/h1>\\n <p><span style=\\\"color: #ffffff;\\\">Check out what it\'s like to be at the market every weekend.<\\/span><\\/p>\\n <p><span style=\\\"color: #ffffff;\\\"><\\/span><\\/p>\"},{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"spacer\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}}}]}]},{\"type\":\"container\",\"columnLayout\":\"1_2\",\"orientation\":\"horizontal\",\"image\":{\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg\",\"display\":\"tile\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Logo.png\",\"alt\":\"FarmersMarket-Logo\",\"fullWidth\":true,\"width\":\"112px\",\"height\":\"400px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"social\",\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png?mailpoet_version=3.15.0\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}]},{\"type\":\"footer\",\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#689f2c\",\"textDecoration\":\"none\"}}}]}]},{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"horizontal\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"container\",\"columnLayout\":false,\"orientation\":\"vertical\",\"image\":{\"src\":null,\"display\":\"scale\"},\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"}},\"blocks\":[{\"type\":\"image\",\"link\":\"\",\"src\":\"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Bottom-2.jpg\",\"alt\":\"FarmersMarket-Bottom\",\"fullWidth\":true,\"width\":\"660px\",\"height\":\"50px\",\"styles\":{\"block\":{\"textAlign\":\"center\"}}}]}]}]},\"globalStyles\":{\"text\":{\"fontColor\":\"#000000\",\"fontFamily\":\"Roboto\",\"fontSize\":\"14px\"},\"h1\":{\"fontColor\":\"#111111\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"30px\"},\"h2\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"24px\"},\"h3\":{\"fontColor\":\"#333333\",\"fontFamily\":\"Trebuchet MS\",\"fontSize\":\"22px\"},\"link\":{\"fontColor\":\"#689f2c\",\"textDecoration\":\"underline\"},\"wrapper\":{\"backgroundColor\":\"#ffffff\"},\"body\":{\"backgroundColor\":\"#ffffff\"}},\"blockDefaults\":{\"automatedLatestContent\":{\"amount\":\"5\",\"withLayout\":false,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"belowTitle\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContent.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContent.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"automatedLatestContentLayout\":{\"amount\":\"5\",\"withLayout\":true,\"contentType\":\"post\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"button\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"automatedLatestContentLayout.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"automatedLatestContentLayout.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"button\":{\"text\":\"CARROTS EVERYWHERE\",\"url\":\"\",\"styles\":{\"block\":{\"backgroundColor\":\"#252525\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"0px\",\"borderRadius\":\"0px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Source Sans Pro\",\"fontSize\":\"14px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}},\"type\":\"button\"},\"divider\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"2px\",\"borderColor\":\"#252525\"}},\"type\":\"divider\"},\"footer\":{\"text\":\"<p><a href=\\\"[link:subscription_unsubscribe_url]\\\">Unsubscribe<\\/a> | <a href=\\\"[link:subscription_manage_url]\\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Roboto\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#689f2c\",\"textDecoration\":\"none\"}},\"type\":\"footer\"},\"posts\":{\"amount\":\"10\",\"withLayout\":true,\"contentType\":\"post\",\"postStatus\":\"publish\",\"inclusionType\":\"include\",\"displayType\":\"excerpt\",\"titleFormat\":\"h1\",\"titleAlignment\":\"left\",\"titleIsLink\":false,\"imageFullWidth\":false,\"featuredImagePosition\":\"alternate\",\"showAuthor\":\"no\",\"authorPrecededBy\":\"Author:\",\"showCategories\":\"no\",\"categoriesPrecededBy\":\"Categories:\",\"readMoreType\":\"link\",\"readMoreText\":\"Read more\",\"readMoreButton\":{\"text\":\"Read more\",\"url\":\"[postLink]\",\"context\":\"posts.readMoreButton\",\"styles\":{\"block\":{\"backgroundColor\":\"#2ea1cd\",\"borderColor\":\"#0074a2\",\"borderWidth\":\"1px\",\"borderRadius\":\"5px\",\"borderStyle\":\"solid\",\"width\":\"180px\",\"lineHeight\":\"40px\",\"fontColor\":\"#ffffff\",\"fontFamily\":\"Verdana\",\"fontSize\":\"18px\",\"fontWeight\":\"normal\",\"textAlign\":\"center\"}}},\"sortBy\":\"newest\",\"showDivider\":true,\"divider\":{\"context\":\"posts.divider\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"padding\":\"13px\",\"borderStyle\":\"solid\",\"borderWidth\":\"3px\",\"borderColor\":\"#aaaaaa\"}}},\"backgroundColor\":\"#ffffff\",\"backgroundColorAlternate\":\"#eeeeee\"},\"social\":{\"iconSet\":\"full-symbol-black\",\"icons\":[{\"type\":\"socialIcon\",\"iconType\":\"facebook\",\"link\":\"http:\\/\\/www.facebook.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Facebook\"},{\"type\":\"socialIcon\",\"iconType\":\"twitter\",\"link\":\"http:\\/\\/www.twitter.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Twitter\"},{\"type\":\"socialIcon\",\"iconType\":\"instagram\",\"link\":\"http:\\/\\/instagram.com\",\"image\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png\",\"height\":\"32px\",\"width\":\"32px\",\"text\":\"Instagram\"}],\"type\":\"social\"},\"spacer\":{\"styles\":{\"block\":{\"backgroundColor\":\"transparent\",\"height\":\"20px\"}},\"type\":\"spacer\"},\"header\":{\"text\":\"<a href=\\\"[link:newsletter_view_in_browser_url]\\\">View this in your browser.<\\/a>\",\"styles\":{\"block\":{\"backgroundColor\":\"transparent\"},\"text\":{\"fontColor\":\"#222222\",\"fontFamily\":\"Arial\",\"fontSize\":\"12px\",\"textAlign\":\"center\"},\"link\":{\"fontColor\":\"#6cb7d4\",\"textDecoration\":\"underline\"}},\"type\":\"header\"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/farmers-market/thumbnail.20190411-1500.jpg',1,NULL,'2021-09-06 16:26:02'); /*!40000 ALTER TABLE `wp_mailpoet_newsletter_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_newsletters` -- DROP TABLE IF EXISTS `wp_mailpoet_newsletters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_newsletters` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `hash` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `parent_id` int(11) unsigned DEFAULT NULL, `subject` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'standard', `sender_address` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `sender_name` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'draft', `reply_to_address` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `reply_to_name` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `preheader` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `body` longtext COLLATE utf8mb4_unicode_520_ci, `sent_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `unsubscribe_token` char(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `ga_campaign` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `unsubscribe_token` (`unsubscribe_token`), KEY `type_status` (`type`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_newsletters` -- LOCK TABLES `wp_mailpoet_newsletters` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_scheduled_task_subscribers` -- DROP TABLE IF EXISTS `wp_mailpoet_scheduled_task_subscribers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_scheduled_task_subscribers` ( `task_id` int(11) unsigned NOT NULL, `subscriber_id` int(11) unsigned NOT NULL, `processed` int(1) NOT NULL, `failed` smallint(1) NOT NULL DEFAULT '0', `error` text COLLATE utf8mb4_unicode_520_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`task_id`,`subscriber_id`), KEY `subscriber_id` (`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_scheduled_task_subscribers` -- LOCK TABLES `wp_mailpoet_scheduled_task_subscribers` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_scheduled_task_subscribers` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_scheduled_task_subscribers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_scheduled_tasks` -- DROP TABLE IF EXISTS `wp_mailpoet_scheduled_tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_scheduled_tasks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(90) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `status` varchar(12) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `priority` mediumint(9) NOT NULL DEFAULT '0', `scheduled_at` timestamp NULL DEFAULT NULL, `processed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `in_progress` int(1) DEFAULT NULL, `reschedule_count` int(11) NOT NULL DEFAULT '0', `meta` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`id`), KEY `type` (`type`), KEY `status` (`status`) ) ENGINE=InnoDB AUTO_INCREMENT=425 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_scheduled_tasks` -- LOCK TABLES `wp_mailpoet_scheduled_tasks` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_scheduled_tasks` DISABLE KEYS */; INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (1,'inactive_subscribers','completed',5,'2021-09-06 17:26:02','2021-09-06 17:55:44','2021-09-06 16:26:02','2021-09-06 17:55:44',NULL,0,0,'{\"last_subscriber_id\":1000}'),(2,'beamer','completed',5,'2021-09-06 16:26:02','2021-09-06 16:27:09','2021-09-06 16:26:02','2021-09-06 16:27:09',NULL,0,0,NULL),(3,'unsubscribe_tokens','completed',5,'2021-09-06 16:26:02','2021-09-06 16:27:32','2021-09-06 16:26:02','2021-09-06 16:27:32',NULL,0,0,'{\"last_subscriber_id\":\"2\",\"last_newsletter_id\":null}'),(4,'subscriber_link_tokens','completed',5,'2021-09-06 16:26:02','2021-09-06 16:27:09','2021-09-06 16:26:02','2021-09-06 16:27:09',NULL,0,0,NULL),(5,'migration','completed',10,'2021-09-06 16:26:46','2021-09-06 16:27:08','2021-09-06 16:26:46','2021-09-06 16:27:08',NULL,NULL,0,NULL),(6,'export_files_cleanup','completed',10,'2021-09-19 00:00:00','2021-09-19 01:06:20','2021-09-06 16:26:46','2021-09-19 01:06:20',NULL,0,0,NULL),(7,'woocommerce_sync','completed',10,'2021-09-15 00:00:00','2021-09-15 00:08:41','2021-09-06 16:26:46','2021-09-15 00:08:41',NULL,0,0,NULL),(8,'woocommerce_past_orders','completed',10,'2021-09-06 16:26:46','2021-09-06 16:27:32','2021-09-06 16:26:46','2021-09-06 16:27:33',NULL,0,0,NULL),(9,'stats_notification_automated_emails','completed',10,'2021-10-04 12:00:00','2021-10-04 12:52:00','2021-09-06 16:26:46','2021-10-04 12:52:00',NULL,0,0,NULL),(10,'subscribers_engagement_score','completed',10,'2021-09-07 13:53:00','2021-09-07 14:48:30','2021-09-06 16:26:46','2021-09-07 14:48:30',NULL,0,0,NULL),(11,'subscriber_link_tokens','completed',10,'2021-09-06 16:27:09','2021-09-06 16:27:56','2021-09-06 16:27:09','2021-09-06 16:27:56',NULL,0,0,NULL),(12,'beamer','completed',10,'2021-09-15 19:50:00','2021-09-15 20:00:33','2021-09-06 16:27:32','2021-09-15 20:00:33',NULL,0,0,NULL),(13,'inactive_subscribers','completed',10,'2021-09-19 00:00:00','2021-09-19 01:06:21','2021-09-06 17:55:44','2021-09-19 01:06:21',NULL,0,0,'{\"last_subscriber_id\":1000}'),(14,'subscribers_engagement_score','completed',10,'2021-09-07 14:48:30','2021-09-07 14:49:15','2021-09-07 14:48:30','2021-09-07 14:49:15',NULL,0,0,NULL),(15,'subscribers_engagement_score','completed',10,'2021-09-07 14:49:15','2021-09-07 14:49:57','2021-09-07 14:49:15','2021-09-07 14:49:57',NULL,0,0,NULL),(16,'subscribers_engagement_score','completed',10,'2021-09-08 10:34:00','2021-09-08 10:42:38','2021-09-07 14:49:57','2021-09-08 10:42:38',NULL,0,0,NULL),(17,'subscribers_engagement_score','completed',10,'2021-09-09 06:04:00','2021-09-09 06:04:24','2021-09-08 10:42:38','2021-09-09 06:04:24',NULL,0,0,NULL),(18,'subscribers_engagement_score','completed',10,'2021-09-09 06:04:24','2021-09-09 06:05:06','2021-09-09 06:04:24','2021-09-09 06:05:06',NULL,0,0,NULL),(19,'subscribers_engagement_score','completed',10,'2021-09-10 03:57:00','2021-09-10 05:44:11','2021-09-09 06:05:06','2021-09-10 05:44:11',NULL,0,0,NULL),(20,'subscribers_engagement_score','completed',10,'2021-09-11 20:45:00','2021-09-11 21:08:30','2021-09-10 05:44:11','2021-09-11 21:08:30',NULL,0,0,NULL),(21,'subscribers_engagement_score','completed',10,'2021-09-11 21:08:30','2021-09-11 21:09:12','2021-09-11 21:08:30','2021-09-11 21:09:12',NULL,0,0,NULL),(22,'subscribers_engagement_score','completed',10,'2021-09-12 21:22:00','2021-09-12 21:33:53','2021-09-11 21:09:12','2021-09-12 21:33:53',NULL,0,0,NULL),(23,'subscribers_engagement_score','completed',10,'2021-09-12 21:33:53','2021-09-12 21:34:35','2021-09-12 21:33:53','2021-09-12 21:34:35',NULL,0,0,NULL),(24,'subscribers_engagement_score','completed',10,'2021-09-13 08:54:00','2021-09-13 09:29:59','2021-09-12 21:34:35','2021-09-13 09:29:59',NULL,0,0,NULL),(25,'subscribers_engagement_score','completed',10,'2021-09-14 10:26:00','2021-09-14 10:40:03','2021-09-13 09:29:59','2021-09-14 10:40:03',NULL,0,0,NULL),(26,'subscribers_engagement_score','completed',10,'2021-09-14 10:40:03','2021-09-14 10:40:45','2021-09-14 10:40:03','2021-09-14 10:40:45',NULL,0,0,NULL),(27,'subscribers_engagement_score','completed',10,'2021-09-15 18:28:00','2021-09-15 19:25:05','2021-09-14 10:40:45','2021-09-15 19:25:05',NULL,0,0,NULL),(28,'woocommerce_sync','completed',10,'2021-09-24 00:00:00','2021-09-24 00:37:39','2021-09-15 19:24:43','2021-09-24 00:37:39',NULL,0,0,NULL),(29,'subscribers_engagement_score','completed',10,'2021-09-15 19:25:05','2021-09-15 19:25:49','2021-09-15 19:25:05','2021-09-15 19:25:49',NULL,0,0,NULL),(30,'subscribers_engagement_score','completed',10,'2021-09-16 08:22:00','2021-09-16 08:54:05','2021-09-15 19:25:49','2021-09-16 08:54:05',NULL,0,0,NULL),(31,'beamer','completed',10,'2021-09-25 10:53:00','2021-09-25 11:06:50','2021-09-15 20:00:55','2021-09-25 11:06:50',NULL,0,0,NULL),(32,'subscribers_engagement_score','completed',10,'2021-09-17 01:52:00','2021-09-17 02:06:47','2021-09-16 08:54:05','2021-09-17 02:06:47',NULL,0,0,NULL),(33,'subscribers_engagement_score','completed',10,'2021-09-17 02:06:47','2021-09-17 02:07:29','2021-09-17 02:06:47','2021-09-17 02:07:29',NULL,0,0,NULL),(34,'subscribers_engagement_score','completed',10,'2021-09-18 01:56:00','2021-09-18 02:27:44','2021-09-17 02:07:29','2021-09-18 02:27:44',NULL,0,0,NULL),(35,'subscribers_engagement_score','completed',10,'2021-09-18 02:27:44','2021-09-18 02:28:26','2021-09-18 02:27:44','2021-09-18 02:28:26',NULL,0,0,NULL),(36,'subscribers_engagement_score','completed',10,'2021-09-19 12:20:00','2021-09-19 12:55:15','2021-09-18 02:28:26','2021-09-19 12:55:15',NULL,0,0,NULL),(37,'inactive_subscribers','completed',10,'2021-09-20 00:00:00','2021-09-20 00:09:51','2021-09-19 01:06:21','2021-09-20 00:09:51',NULL,0,0,'{\"last_subscriber_id\":1000}'),(38,'export_files_cleanup','completed',10,'2021-09-24 00:00:00','2021-09-24 00:37:39','2021-09-19 01:06:41','2021-09-24 00:37:39',NULL,0,0,NULL),(39,'subscribers_engagement_score','completed',10,'2021-09-19 12:55:15','2021-09-19 12:55:57','2021-09-19 12:55:15','2021-09-19 12:55:57',NULL,0,0,NULL),(40,'subscribers_engagement_score','completed',10,'2021-09-20 12:08:00','2021-09-20 13:01:16','2021-09-19 12:55:57','2021-09-20 13:01:16',NULL,0,0,NULL),(41,'inactive_subscribers','completed',10,'2021-10-01 00:00:00','2021-10-01 00:06:31','2021-09-20 00:09:51','2021-10-01 00:06:31',NULL,0,0,'{\"last_subscriber_id\":1000}'),(42,'subscribers_engagement_score','completed',10,'2021-09-20 13:01:16','2021-09-20 13:01:58','2021-09-20 13:01:16','2021-09-20 13:01:58',NULL,0,0,NULL),(43,'subscribers_engagement_score','completed',10,'2021-09-21 08:46:00','2021-09-21 09:20:34','2021-09-20 13:01:58','2021-09-21 09:20:34',NULL,0,0,NULL),(44,'subscribers_engagement_score','completed',10,'2021-09-22 09:44:00','2021-09-22 10:40:19','2021-09-21 09:20:34','2021-09-22 10:40:19',NULL,0,0,NULL),(45,'subscribers_engagement_score','completed',10,'2021-09-22 10:40:19','2021-09-22 10:41:03','2021-09-22 10:40:19','2021-09-22 10:41:03',NULL,0,0,NULL),(46,'subscribers_engagement_score','completed',10,'2021-09-23 17:09:00','2021-09-23 17:25:25','2021-09-22 10:41:03','2021-09-23 17:25:25',NULL,0,0,NULL),(47,'subscribers_engagement_score','completed',10,'2021-09-23 17:25:25','2021-09-23 17:26:08','2021-09-23 17:25:25','2021-09-23 17:26:08',NULL,0,0,NULL),(48,'subscribers_engagement_score','completed',10,'2021-09-24 13:27:00','2021-09-24 13:34:53','2021-09-23 17:26:08','2021-09-24 13:34:53',NULL,0,0,NULL),(49,'export_files_cleanup','completed',10,'2021-09-27 00:00:00','2021-09-27 19:06:45','2021-09-24 00:38:01','2021-09-27 19:06:45',NULL,0,0,NULL),(50,'woocommerce_sync','completed',10,'2021-10-01 00:00:00','2021-10-01 00:06:31','2021-09-24 00:38:01','2021-10-01 00:06:31',NULL,0,0,NULL),(51,'subscribers_engagement_score','completed',10,'2021-09-25 17:28:00','2021-09-25 18:30:52','2021-09-24 13:34:53','2021-09-25 18:30:52',NULL,0,0,NULL),(52,'beamer','completed',10,'2021-09-30 19:34:00','2021-09-30 20:12:52','2021-09-25 11:21:59','2021-09-30 20:12:52',NULL,0,0,NULL),(53,'subscribers_engagement_score','completed',10,'2021-09-25 18:30:52','2021-09-25 18:31:35','2021-09-25 18:30:52','2021-09-25 18:31:35',NULL,0,0,NULL),(54,'subscribers_engagement_score','completed',10,'2021-09-26 10:11:00','2021-09-26 11:31:04','2021-09-25 18:31:35','2021-09-26 11:31:04',NULL,0,0,NULL),(55,'subscribers_engagement_score','completed',10,'2021-09-27 18:08:00','2021-09-27 19:06:45','2021-09-26 11:31:04','2021-09-27 19:06:45',NULL,0,0,NULL),(56,'subscribers_engagement_score','completed',10,'2021-09-27 19:06:45','2021-09-27 19:07:27','2021-09-27 19:06:45','2021-09-27 19:07:27',NULL,0,0,NULL),(57,'export_files_cleanup','completed',10,'2021-10-05 00:00:00','2021-10-05 00:33:16','2021-09-27 19:07:06','2021-10-05 00:33:16',NULL,0,0,NULL),(58,'subscribers_engagement_score','completed',10,'2021-09-28 13:03:00','2021-09-28 13:07:21','2021-09-27 19:07:27','2021-09-28 13:07:21',NULL,0,0,NULL),(59,'subscribers_engagement_score','completed',10,'2021-09-29 21:24:00','2021-09-29 21:44:22','2021-09-28 13:07:21','2021-09-29 21:44:22',NULL,0,0,NULL),(60,'subscribers_engagement_score','completed',10,'2021-09-29 21:44:22','2021-09-29 21:45:08','2021-09-29 21:44:22','2021-09-29 21:45:08',NULL,0,0,NULL),(61,'subscribers_engagement_score','completed',10,'2021-09-30 11:46:00','2021-09-30 12:02:51','2021-09-29 21:45:08','2021-09-30 12:02:51',NULL,0,0,NULL),(62,'subscribers_engagement_score','completed',10,'2021-10-01 16:05:00','2021-10-01 18:15:45','2021-09-30 12:02:51','2021-10-01 18:15:45',NULL,0,0,NULL),(63,'beamer','completed',10,'2021-10-08 19:09:00','2021-10-08 20:01:11','2021-09-30 20:13:13','2021-10-08 20:01:11',NULL,0,0,NULL),(64,'inactive_subscribers','completed',10,'2021-10-08 00:00:00','2021-10-08 00:06:58','2021-10-01 00:06:31','2021-10-08 00:06:58',NULL,0,0,'{\"last_subscriber_id\":1000}'),(65,'woocommerce_sync','completed',10,'2021-10-05 00:00:00','2021-10-05 00:33:16','2021-10-01 00:06:52','2021-10-05 00:33:16',NULL,0,0,NULL),(66,'subscribers_engagement_score','completed',10,'2021-10-01 18:15:45','2021-10-01 18:16:27','2021-10-01 18:15:45','2021-10-01 18:16:27',NULL,0,0,NULL),(67,'subscribers_engagement_score','completed',10,'2021-10-02 22:40:00','2021-10-02 22:55:32','2021-10-01 18:16:27','2021-10-02 22:55:32',NULL,0,0,NULL),(68,'subscribers_engagement_score','completed',10,'2021-10-02 22:55:32','2021-10-02 22:56:14','2021-10-02 22:55:32','2021-10-02 22:56:14',NULL,0,0,NULL),(69,'subscribers_engagement_score','completed',10,'2021-10-03 07:43:00','2021-10-03 09:10:40','2021-10-02 22:56:14','2021-10-03 09:10:40',NULL,0,0,NULL),(70,'subscribers_engagement_score','completed',10,'2021-10-04 00:57:00','2021-10-04 00:59:34','2021-10-03 09:10:40','2021-10-04 00:59:34',NULL,0,0,NULL),(71,'subscribers_engagement_score','completed',10,'2021-10-04 00:59:34','2021-10-04 01:00:16','2021-10-04 00:59:34','2021-10-04 01:00:16',NULL,0,0,NULL),(72,'subscribers_engagement_score','completed',10,'2021-10-05 05:40:00','2021-10-05 05:44:38','2021-10-04 01:00:16','2021-10-05 05:44:38',NULL,0,0,NULL),(73,'stats_notification_automated_emails','completed',10,'2021-11-01 12:00:00','2021-11-01 12:09:16','2021-10-04 12:52:21','2021-11-01 12:09:16',NULL,0,0,NULL),(74,'export_files_cleanup','completed',10,'2021-10-13 00:00:00','2021-10-13 16:52:08','2021-10-05 00:33:38','2021-10-13 16:52:08',NULL,0,0,NULL),(75,'woocommerce_sync','completed',10,'2021-10-16 00:00:00','2021-10-16 00:03:56','2021-10-05 00:33:38','2021-10-16 00:03:56',NULL,0,0,NULL),(76,'subscribers_engagement_score','completed',10,'2021-10-05 05:44:38','2021-10-05 05:45:20','2021-10-05 05:44:38','2021-10-05 05:45:20',NULL,0,0,NULL),(77,'subscribers_engagement_score','completed',10,'2021-10-06 20:40:00','2021-10-06 21:28:36','2021-10-05 05:45:20','2021-10-06 21:28:36',NULL,0,0,NULL),(78,'subscribers_engagement_score','completed',10,'2021-10-06 21:28:36','2021-10-06 21:29:23','2021-10-06 21:28:36','2021-10-06 21:29:23',NULL,0,0,NULL),(79,'subscribers_engagement_score','completed',10,'2021-10-07 03:17:00','2021-10-07 03:30:59','2021-10-06 21:29:23','2021-10-07 03:30:59',NULL,0,0,NULL),(80,'subscribers_engagement_score','completed',10,'2021-10-08 09:37:00','2021-10-08 09:37:25','2021-10-07 03:30:59','2021-10-08 09:37:25',NULL,0,0,NULL),(81,'inactive_subscribers','completed',10,'2021-10-12 00:00:00','2021-10-12 00:20:51','2021-10-08 00:06:58','2021-10-12 00:20:51',NULL,0,0,'{\"last_subscriber_id\":1000}'),(82,'subscribers_engagement_score','completed',10,'2021-10-08 09:37:25','2021-10-08 09:38:07','2021-10-08 09:37:25','2021-10-08 09:38:07',NULL,0,0,NULL),(83,'subscribers_engagement_score','completed',10,'2021-10-08 09:38:07','2021-10-08 09:38:49','2021-10-08 09:38:07','2021-10-08 09:38:49',NULL,0,0,NULL),(84,'subscribers_engagement_score','completed',10,'2021-10-09 19:53:00','2021-10-09 21:41:13','2021-10-08 09:38:49','2021-10-09 21:41:13',NULL,0,0,NULL),(85,'beamer','completed',10,'2021-10-17 23:07:00','2021-10-17 23:27:30','2021-10-08 20:01:32','2021-10-17 23:27:30',NULL,0,0,NULL),(86,'subscribers_engagement_score','completed',10,'2021-10-09 21:41:13','2021-10-09 21:41:55','2021-10-09 21:41:13','2021-10-09 21:41:55',NULL,0,0,NULL),(87,'subscribers_engagement_score','completed',10,'2021-10-10 12:44:00','2021-10-10 13:17:34','2021-10-09 21:41:55','2021-10-10 13:17:34',NULL,0,0,NULL),(88,'subscribers_engagement_score','completed',10,'2021-10-11 10:45:00','2021-10-11 11:16:13','2021-10-10 13:17:34','2021-10-11 11:16:13',NULL,0,0,NULL),(89,'subscribers_engagement_score','completed',10,'2021-10-11 11:16:13','2021-10-11 11:16:54','2021-10-11 11:16:13','2021-10-11 11:16:54',NULL,0,0,NULL),(90,'subscribers_engagement_score','completed',10,'2021-10-12 12:29:00','2021-10-12 12:46:56','2021-10-11 11:16:54','2021-10-12 12:46:56',NULL,0,0,NULL),(91,'inactive_subscribers','completed',10,'2021-10-22 00:00:00','2021-10-22 00:29:37','2021-10-12 00:20:51','2021-10-22 00:29:37',NULL,0,0,'{\"last_subscriber_id\":1000}'),(92,'subscribers_engagement_score','completed',10,'2021-10-12 12:46:56','2021-10-12 12:47:38','2021-10-12 12:46:56','2021-10-12 12:47:38',NULL,0,0,NULL),(93,'subscribers_engagement_score','completed',10,'2021-10-13 15:57:00','2021-10-13 16:52:08','2021-10-12 12:47:38','2021-10-13 16:52:08',NULL,0,0,NULL),(94,'subscribers_engagement_score','completed',10,'2021-10-13 16:52:08','2021-10-13 16:52:51','2021-10-13 16:52:08','2021-10-13 16:52:51',NULL,0,0,NULL),(95,'export_files_cleanup','completed',10,'2021-10-21 00:00:00','2021-10-21 18:51:52','2021-10-13 16:52:29','2021-10-21 18:51:52',NULL,0,0,NULL),(96,'subscribers_engagement_score','completed',10,'2021-10-14 12:39:00','2021-10-14 13:12:47','2021-10-13 16:52:51','2021-10-14 13:12:47',NULL,0,0,NULL),(97,'subscribers_engagement_score','completed',10,'2021-10-15 19:38:00','2021-10-15 20:21:48','2021-10-14 13:12:47','2021-10-15 20:21:48',NULL,0,0,NULL),(98,'subscribers_engagement_score','completed',10,'2021-10-15 20:21:48','2021-10-15 20:22:34','2021-10-15 20:21:48','2021-10-15 20:22:34',NULL,0,0,NULL),(99,'subscribers_engagement_score','completed',10,'2021-10-16 09:22:00','2021-10-16 09:47:42','2021-10-15 20:22:34','2021-10-16 09:47:42',NULL,0,0,NULL),(100,'woocommerce_sync','completed',10,'2021-10-18 00:00:00','2021-10-18 00:12:40','2021-10-16 09:47:21','2021-10-18 00:12:40',NULL,0,0,NULL),(101,'subscribers_engagement_score','completed',10,'2021-10-17 20:35:00','2021-10-17 20:39:20','2021-10-16 09:47:42','2021-10-17 20:39:20',NULL,0,0,NULL),(102,'subscribers_engagement_score','completed',10,'2021-10-17 20:39:20','2021-10-17 20:40:04','2021-10-17 20:39:20','2021-10-17 20:40:04',NULL,0,0,NULL),(103,'subscribers_engagement_score','completed',10,'2021-10-18 09:09:00','2021-10-18 09:18:32','2021-10-17 20:40:04','2021-10-18 09:18:32',NULL,0,0,NULL),(104,'beamer','completed',10,'2021-10-19 06:04:00','2021-10-19 06:15:31','2021-10-17 23:27:52','2021-10-19 06:15:31',NULL,0,0,NULL),(105,'woocommerce_sync','completed',10,'2021-10-31 00:00:00','2021-10-31 00:12:44','2021-10-18 00:13:02','2021-10-31 00:12:44',NULL,0,0,NULL),(106,'subscribers_engagement_score','completed',10,'2021-10-19 08:37:00','2021-10-19 08:58:11','2021-10-18 09:18:32','2021-10-19 08:58:11',NULL,0,0,NULL),(107,'beamer','completed',10,'2021-10-28 01:46:00','2021-10-28 01:55:48','2021-10-19 06:15:52','2021-10-28 01:55:48',NULL,0,0,NULL),(108,'subscribers_engagement_score','completed',10,'2021-10-19 08:58:11','2021-10-19 08:59:00','2021-10-19 08:58:11','2021-10-19 08:59:00',NULL,0,0,NULL),(109,'subscribers_engagement_score','completed',10,'2021-10-20 04:15:00','2021-10-20 04:42:57','2021-10-19 08:59:00','2021-10-20 04:42:57',NULL,0,0,NULL),(110,'subscribers_engagement_score','completed',10,'2021-10-21 18:25:00','2021-10-21 18:51:52','2021-10-20 04:42:57','2021-10-21 18:51:52',NULL,0,0,NULL),(111,'subscribers_engagement_score','completed',10,'2021-10-21 18:51:52','2021-10-21 18:52:35','2021-10-21 18:51:52','2021-10-21 18:52:35',NULL,0,0,NULL),(112,'export_files_cleanup','completed',10,'2021-10-26 00:00:00','2021-10-26 23:56:31','2021-10-21 18:52:14','2021-10-26 23:56:31',NULL,0,0,NULL),(113,'subscribers_engagement_score','completed',10,'2021-10-22 16:24:00','2021-10-22 16:33:54','2021-10-21 18:52:35','2021-10-22 16:33:54',NULL,0,0,NULL),(114,'inactive_subscribers','completed',10,'2021-10-31 00:00:00','2021-10-31 00:12:43','2021-10-22 00:29:37','2021-10-31 00:12:43',NULL,0,0,'{\"last_subscriber_id\":1000}'),(115,'subscribers_engagement_score','completed',10,'2021-10-23 02:55:00','2021-10-23 02:55:48','2021-10-22 16:33:54','2021-10-23 02:55:48',NULL,0,0,NULL),(116,'subscribers_engagement_score','completed',10,'2021-10-23 02:55:48','2021-10-23 02:56:29','2021-10-23 02:55:48','2021-10-23 02:56:29',NULL,0,0,NULL),(117,'subscribers_engagement_score','completed',10,'2021-10-24 19:42:00','2021-10-24 20:22:00','2021-10-23 02:56:29','2021-10-24 20:22:00',NULL,0,0,NULL),(118,'subscribers_engagement_score','completed',10,'2021-10-24 20:22:00','2021-10-24 20:22:42','2021-10-24 20:22:00','2021-10-24 20:22:42',NULL,0,0,NULL),(119,'subscribers_engagement_score','completed',10,'2021-10-25 14:57:00','2021-10-25 14:59:14','2021-10-24 20:22:42','2021-10-25 14:59:14',NULL,0,0,NULL),(120,'subscribers_engagement_score','completed',10,'2021-10-26 23:56:00','2021-10-26 23:56:31','2021-10-25 14:59:14','2021-10-26 23:56:31',NULL,0,0,NULL),(121,'subscribers_engagement_score','completed',10,'2021-10-26 23:56:31','2021-10-26 23:57:14','2021-10-26 23:56:31','2021-10-26 23:57:14',NULL,0,0,NULL),(122,'export_files_cleanup','completed',10,'2021-11-07 00:00:00','2021-11-07 23:56:55','2021-10-26 23:56:53','2021-11-07 23:56:55',NULL,0,0,NULL),(123,'subscribers_engagement_score','completed',10,'2021-10-27 03:27:00','2021-10-27 03:36:36','2021-10-26 23:57:14','2021-10-27 03:36:36',NULL,0,0,NULL),(124,'subscribers_engagement_score','completed',10,'2021-10-28 02:11:00','2021-10-28 02:40:08','2021-10-27 03:36:36','2021-10-28 02:40:08',NULL,0,0,NULL),(125,'beamer','completed',10,'2021-11-02 13:11:00','2021-11-02 13:33:04','2021-10-28 01:56:09','2021-11-02 13:33:04',NULL,0,0,NULL),(126,'subscribers_engagement_score','completed',10,'2021-10-28 02:40:08','2021-10-28 02:40:51','2021-10-28 02:40:08','2021-10-28 02:40:51',NULL,0,0,NULL),(127,'subscribers_engagement_score','completed',10,'2021-10-29 20:16:00','2021-10-29 20:28:12','2021-10-28 02:40:51','2021-10-29 20:28:12',NULL,0,0,NULL),(128,'subscribers_engagement_score','completed',10,'2021-10-29 20:28:12','2021-10-29 20:28:55','2021-10-29 20:28:12','2021-10-29 20:28:55',NULL,0,0,NULL),(129,'subscribers_engagement_score','completed',10,'2021-10-30 02:05:00','2021-10-30 02:10:00','2021-10-29 20:28:55','2021-10-30 02:10:00',NULL,0,0,NULL),(130,'subscribers_engagement_score','completed',10,'2021-10-31 06:36:00','2021-10-31 06:36:29','2021-10-30 02:10:00','2021-10-31 06:36:29',NULL,0,0,NULL),(131,'inactive_subscribers','completed',10,'2021-11-04 00:00:00','2021-11-04 01:02:26','2021-10-31 00:12:43','2021-11-04 01:02:26',NULL,0,0,'{\"last_subscriber_id\":1000}'),(132,'woocommerce_sync','completed',10,'2021-11-01 00:00:00','2021-11-01 00:00:52','2021-10-31 00:13:05','2021-11-01 00:00:52',NULL,0,0,NULL),(133,'subscribers_engagement_score','completed',10,'2021-10-31 06:36:29','2021-10-31 06:37:14','2021-10-31 06:36:29','2021-10-31 06:37:14',NULL,0,0,NULL),(134,'subscribers_engagement_score','completed',10,'2021-11-01 17:03:00','2021-11-01 17:10:51','2021-10-31 06:37:14','2021-11-01 17:10:51',NULL,0,0,NULL),(135,'woocommerce_sync','completed',10,'2021-11-10 00:00:00','2021-11-10 00:16:07','2021-11-01 12:08:54','2021-11-10 00:16:07',NULL,0,0,NULL),(136,'stats_notification_automated_emails','completed',10,'2021-12-06 12:00:00','2021-12-06 12:10:26','2021-11-01 12:09:37','2021-12-06 12:10:26',NULL,0,0,NULL),(137,'subscribers_engagement_score','completed',10,'2021-11-01 17:10:51','2021-11-01 17:11:34','2021-11-01 17:10:51','2021-11-01 17:11:34',NULL,0,0,NULL),(138,'subscribers_engagement_score','completed',10,'2021-11-02 18:52:00','2021-11-02 18:52:52','2021-11-01 17:11:34','2021-11-02 18:52:52',NULL,0,0,NULL),(139,'beamer','completed',10,'2021-11-12 16:55:00','2021-11-12 17:40:03','2021-11-02 13:33:28','2021-11-12 17:40:03',NULL,0,0,NULL),(140,'subscribers_engagement_score','completed',10,'2021-11-02 18:52:52','2021-11-02 18:53:35','2021-11-02 18:52:52','2021-11-02 18:53:35',NULL,0,0,NULL),(141,'subscribers_engagement_score','completed',10,'2021-11-03 17:30:00','2021-11-03 18:37:01','2021-11-02 18:53:35','2021-11-03 18:37:01',NULL,0,0,NULL),(142,'subscribers_engagement_score','completed',10,'2021-11-04 12:18:00','2021-11-04 13:02:49','2021-11-03 18:37:01','2021-11-04 13:02:49',NULL,0,0,NULL),(143,'inactive_subscribers','completed',10,'2021-11-11 00:00:00','2021-11-11 00:12:59','2021-11-04 01:02:26','2021-11-11 00:12:59',NULL,0,0,'{\"last_subscriber_id\":1000}'),(144,'subscribers_engagement_score','completed',10,'2021-11-04 13:02:49','2021-11-04 13:50:19','2021-11-04 13:02:49','2021-11-04 13:50:19',NULL,0,0,NULL),(145,'subscribers_engagement_score','completed',10,'2021-11-05 03:31:00','2021-11-05 03:37:32','2021-11-04 13:50:19','2021-11-05 03:37:32',NULL,0,0,NULL),(146,'subscribers_engagement_score','completed',10,'2021-11-06 15:54:00','2021-11-06 16:08:06','2021-11-05 03:37:32','2021-11-06 16:08:06',NULL,0,0,NULL),(147,'subscribers_engagement_score','completed',10,'2021-11-06 16:08:06','2021-11-06 16:08:50','2021-11-06 16:08:06','2021-11-06 16:08:50',NULL,0,0,NULL),(148,'subscribers_engagement_score','completed',10,'2021-11-07 23:27:00','2021-11-07 23:56:55','2021-11-06 16:08:50','2021-11-07 23:56:55',NULL,0,0,NULL),(149,'subscribers_engagement_score','completed',10,'2021-11-07 23:56:55','2021-11-07 23:57:37','2021-11-07 23:56:55','2021-11-07 23:57:37',NULL,0,0,NULL),(150,'export_files_cleanup','completed',10,'2021-11-14 00:00:00','2021-11-14 13:45:35','2021-11-07 23:57:16','2021-11-14 13:45:35',NULL,0,0,NULL),(151,'subscribers_engagement_score','completed',10,'2021-11-08 16:20:00','2021-11-08 17:14:21','2021-11-07 23:57:37','2021-11-08 17:14:21',NULL,0,0,NULL),(152,'subscribers_engagement_score','completed',10,'2021-11-08 17:14:21','2021-11-08 17:15:05','2021-11-08 17:14:21','2021-11-08 17:15:05',NULL,0,0,NULL),(153,'subscribers_engagement_score','completed',10,'2021-11-09 13:55:00','2021-11-09 13:57:50','2021-11-08 17:15:05','2021-11-09 13:57:50',NULL,0,0,NULL),(154,'subscribers_engagement_score','completed',10,'2021-11-09 13:57:50','2021-11-09 13:58:32','2021-11-09 13:57:50','2021-11-09 13:58:32',NULL,0,0,NULL),(155,'subscribers_engagement_score','completed',10,'2021-11-10 08:39:00','2021-11-10 09:32:31','2021-11-09 13:58:32','2021-11-10 09:32:31',NULL,0,0,NULL),(156,'woocommerce_sync','completed',10,'2021-11-18 00:00:00','2021-11-18 00:28:21','2021-11-10 00:16:29','2021-11-18 00:28:21',NULL,0,0,NULL),(157,'subscribers_engagement_score','completed',10,'2021-11-11 23:30:00','2021-11-12 00:08:20','2021-11-10 09:32:31','2021-11-12 00:08:20',NULL,0,0,NULL),(158,'inactive_subscribers','completed',10,'2021-11-16 00:00:00','2021-11-16 01:04:36','2021-11-11 00:12:59','2021-11-16 01:04:36',NULL,0,0,'{\"last_subscriber_id\":1000}'),(159,'subscribers_engagement_score','completed',10,'2021-11-12 00:08:20','2021-11-12 00:09:13','2021-11-12 00:08:20','2021-11-12 00:09:13',NULL,0,0,NULL),(160,'subscribers_engagement_score','completed',10,'2021-11-13 15:31:00','2021-11-13 15:36:22','2021-11-12 00:09:13','2021-11-13 15:36:22',NULL,0,0,NULL),(161,'beamer','completed',10,'2021-11-18 20:39:00','2021-11-18 21:20:25','2021-11-12 17:40:39','2021-11-18 21:20:25',NULL,0,0,NULL),(162,'subscribers_engagement_score','completed',10,'2021-11-13 15:36:22','2021-11-13 15:37:04','2021-11-13 15:36:22','2021-11-13 15:37:04',NULL,0,0,NULL),(163,'subscribers_engagement_score','completed',10,'2021-11-14 13:38:00','2021-11-14 13:45:35','2021-11-13 15:37:04','2021-11-14 13:45:35',NULL,0,0,NULL),(164,'subscribers_engagement_score','completed',10,'2021-11-15 12:29:00','2021-11-15 12:36:09','2021-11-14 13:45:35','2021-11-15 12:36:09',NULL,0,0,NULL),(165,'export_files_cleanup','completed',10,'2021-11-21 00:00:00','2021-11-22 03:19:26','2021-11-14 13:45:56','2021-11-22 03:19:26',NULL,0,0,NULL),(166,'subscribers_engagement_score','completed',10,'2021-11-15 12:36:09','2021-11-15 12:36:52','2021-11-15 12:36:09','2021-11-15 12:36:52',NULL,0,0,NULL),(167,'subscribers_engagement_score','completed',10,'2021-11-16 12:52:00','2021-11-16 13:35:24','2021-11-15 12:36:52','2021-11-16 13:35:24',NULL,0,0,NULL),(168,'inactive_subscribers','completed',10,'2021-11-27 00:00:00','2021-11-27 00:43:36','2021-11-16 01:04:36','2021-11-27 00:43:36',NULL,0,0,'{\"last_subscriber_id\":1000}'),(169,'subscribers_engagement_score','completed',10,'2021-11-16 13:35:24','2021-11-16 13:36:12','2021-11-16 13:35:24','2021-11-16 13:36:12',NULL,0,0,NULL),(170,'subscribers_engagement_score','completed',10,'2021-11-17 22:19:00','2021-11-17 22:29:08','2021-11-16 13:36:12','2021-11-17 22:29:08',NULL,0,0,NULL),(171,'subscribers_engagement_score','completed',10,'2021-11-17 22:29:08','2021-11-17 22:29:52','2021-11-17 22:29:08','2021-11-17 22:29:52',NULL,0,0,NULL),(172,'subscribers_engagement_score','completed',10,'2021-11-18 20:49:00','2021-11-18 21:20:25','2021-11-17 22:29:52','2021-11-18 21:20:25',NULL,0,0,NULL),(173,'woocommerce_sync','completed',10,'2021-11-22 00:00:00','2021-11-22 03:19:26','2021-11-18 21:20:03','2021-11-22 03:19:26',NULL,0,0,NULL),(174,'subscribers_engagement_score','completed',10,'2021-11-19 08:27:00','2021-11-19 11:41:17','2021-11-18 21:20:25','2021-11-19 11:41:17',NULL,0,0,NULL),(175,'beamer','completed',10,'2021-11-24 13:02:00','2021-11-24 13:38:23','2021-11-18 21:20:49','2021-11-24 13:38:23',NULL,0,0,NULL),(176,'subscribers_engagement_score','completed',10,'2021-11-19 11:41:17','2021-11-19 11:42:00','2021-11-19 11:41:17','2021-11-19 11:42:00',NULL,0,0,NULL),(177,'subscribers_engagement_score','completed',10,'2021-11-20 04:18:00','2021-11-20 04:30:29','2021-11-19 11:42:00','2021-11-20 04:30:29',NULL,0,0,NULL),(178,'subscribers_engagement_score','completed',10,'2021-11-21 23:33:00','2021-11-22 03:19:26','2021-11-20 04:30:29','2021-11-22 03:19:26',NULL,0,0,NULL),(179,'subscribers_engagement_score','completed',10,'2021-11-22 03:19:26','2021-11-22 03:20:09','2021-11-22 03:19:26','2021-11-22 03:20:09',NULL,0,0,NULL),(180,'export_files_cleanup','completed',10,'2021-11-30 00:00:00','2021-12-01 02:40:39','2021-11-22 03:19:47','2021-12-01 02:40:39',NULL,0,0,NULL),(181,'woocommerce_sync','completed',10,'2021-12-05 00:00:00','2021-12-05 00:04:44','2021-11-22 03:19:47','2021-12-05 00:04:44',NULL,0,0,NULL),(182,'subscribers_engagement_score','completed',10,'2021-11-23 07:04:00','2021-11-23 08:24:13','2021-11-22 03:20:09','2021-11-23 08:24:13',NULL,0,0,NULL),(183,'subscribers_engagement_score','completed',10,'2021-11-23 08:24:13','2021-11-23 08:24:57','2021-11-23 08:24:13','2021-11-23 08:24:57',NULL,0,0,NULL),(184,'subscribers_engagement_score','completed',10,'2021-11-24 22:39:00','2021-11-24 22:41:03','2021-11-23 08:24:57','2021-11-24 22:41:03',NULL,0,0,NULL),(185,'beamer','completed',10,'2021-12-04 22:55:00','2021-12-05 00:04:44','2021-11-24 13:38:44','2021-12-05 00:04:44',NULL,0,0,NULL),(186,'subscribers_engagement_score','completed',10,'2021-11-24 22:41:03','2021-11-24 22:41:47','2021-11-24 22:41:03','2021-11-24 22:41:47',NULL,0,0,NULL),(187,'subscribers_engagement_score','completed',10,'2021-11-25 19:02:00','2021-11-25 20:21:32','2021-11-24 22:41:47','2021-11-25 20:21:32',NULL,0,0,NULL),(188,'subscribers_engagement_score','completed',10,'2021-11-26 13:56:00','2021-11-26 14:24:52','2021-11-25 20:21:32','2021-11-26 14:24:52',NULL,0,0,NULL),(189,'subscribers_engagement_score','completed',10,'2021-11-26 14:24:52','2021-11-26 14:25:34','2021-11-26 14:24:52','2021-11-26 14:25:34',NULL,0,0,NULL),(190,'subscribers_engagement_score','completed',10,'2021-11-27 18:50:00','2021-11-27 21:43:35','2021-11-26 14:25:34','2021-11-27 21:43:35',NULL,0,0,NULL),(191,'inactive_subscribers','completed',10,'2021-12-04 00:00:00','2021-12-04 00:27:19','2021-11-27 00:43:36','2021-12-04 00:27:19',NULL,0,0,'{\"last_subscriber_id\":1000}'),(192,'subscribers_engagement_score','completed',10,'2021-11-27 21:43:35','2021-11-27 21:44:17','2021-11-27 21:43:35','2021-11-27 21:44:17',NULL,0,0,NULL),(193,'subscribers_engagement_score','completed',10,'2021-11-28 22:35:00','2021-11-28 23:55:28','2021-11-27 21:44:17','2021-11-28 23:55:28',NULL,0,0,NULL),(194,'subscribers_engagement_score','completed',10,'2021-11-28 23:55:28','2021-11-28 23:56:11','2021-11-28 23:55:28','2021-11-28 23:56:11',NULL,0,0,NULL),(195,'subscribers_engagement_score','completed',10,'2021-11-29 05:50:00','2021-11-29 10:01:07','2021-11-28 23:56:11','2021-11-29 10:01:07',NULL,0,0,NULL),(196,'subscribers_engagement_score','completed',10,'2021-11-30 20:53:00','2021-12-01 02:40:39','2021-11-29 10:01:07','2021-12-01 02:40:39',NULL,0,0,NULL),(197,'subscribers_engagement_score','completed',10,'2021-12-01 02:40:39','2021-12-01 02:41:21','2021-12-01 02:40:39','2021-12-01 02:41:21',NULL,0,0,NULL),(198,'export_files_cleanup','completed',10,'2021-12-06 00:00:00','2021-12-06 02:41:10','2021-12-01 02:40:59','2021-12-06 02:41:10',NULL,0,0,NULL),(199,'subscribers_engagement_score','completed',10,'2021-12-02 17:55:00','2021-12-02 18:55:23','2021-12-01 02:41:21','2021-12-02 18:55:23',NULL,0,0,NULL),(200,'subscribers_engagement_score','completed',10,'2021-12-02 18:55:23','2021-12-02 18:56:06','2021-12-02 18:55:23','2021-12-02 18:56:06',NULL,0,0,NULL),(201,'subscribers_engagement_score','completed',10,'2021-12-03 19:29:00','2021-12-03 19:40:51','2021-12-02 18:56:06','2021-12-03 19:40:51',NULL,0,0,NULL),(202,'subscribers_engagement_score','completed',10,'2021-12-03 19:40:51','2021-12-03 19:41:35','2021-12-03 19:40:51','2021-12-03 19:41:35',NULL,0,0,NULL),(203,'subscribers_engagement_score','completed',10,'2021-12-04 05:48:00','2021-12-04 06:26:58','2021-12-03 19:41:35','2021-12-04 06:26:58',NULL,0,0,NULL),(204,'inactive_subscribers','completed',10,'2021-12-12 00:00:00','2021-12-12 00:04:55','2021-12-04 00:27:19','2021-12-12 00:04:55',NULL,0,0,'{\"last_subscriber_id\":1000}'),(205,'subscribers_engagement_score','completed',10,'2021-12-05 09:40:00','2021-12-05 10:06:42','2021-12-04 06:26:58','2021-12-05 10:06:42',NULL,0,0,NULL),(206,'beamer','completed',10,'2021-12-11 05:39:00','2021-12-11 05:54:45','2021-12-05 00:05:05','2021-12-11 05:54:45',NULL,0,0,NULL),(207,'woocommerce_sync','completed',10,'2021-12-07 00:00:00','2021-12-07 00:05:51','2021-12-05 00:05:05','2021-12-07 00:05:51',NULL,0,0,NULL),(208,'subscribers_engagement_score','completed',10,'2021-12-05 10:06:42','2021-12-05 10:07:25','2021-12-05 10:06:42','2021-12-05 10:07:25',NULL,0,0,NULL),(209,'subscribers_engagement_score','completed',10,'2021-12-06 01:53:00','2021-12-06 02:41:10','2021-12-05 10:07:25','2021-12-06 02:41:10',NULL,0,0,NULL),(210,'subscribers_engagement_score','completed',10,'2021-12-07 02:49:00','2021-12-07 03:48:28','2021-12-06 02:41:10','2021-12-07 03:48:28',NULL,0,0,NULL),(211,'export_files_cleanup','completed',10,'2021-12-15 00:00:00','2021-12-15 07:45:21','2021-12-06 02:41:32','2021-12-15 07:45:21',NULL,0,0,NULL),(212,'stats_notification_automated_emails','completed',10,'2022-01-03 12:00:00','2022-01-03 12:21:56','2021-12-06 12:10:47','2022-01-03 12:21:56',NULL,0,0,NULL),(213,'woocommerce_sync','completed',10,'2021-12-14 00:00:00','2021-12-14 00:33:31','2021-12-07 00:06:11','2021-12-14 00:33:31',NULL,0,0,NULL),(214,'subscribers_engagement_score','completed',10,'2021-12-07 03:48:28','2021-12-07 03:49:10','2021-12-07 03:48:28','2021-12-07 03:49:10',NULL,0,0,NULL),(215,'subscribers_engagement_score','completed',10,'2021-12-08 15:42:00','2021-12-08 16:02:20','2021-12-07 03:49:10','2021-12-08 16:02:20',NULL,0,0,NULL),(216,'subscribers_engagement_score','completed',10,'2021-12-08 16:02:20','2021-12-08 16:03:02','2021-12-08 16:02:20','2021-12-08 16:03:02',NULL,0,0,NULL),(217,'subscribers_engagement_score','completed',10,'2021-12-09 23:01:00','2021-12-09 23:15:06','2021-12-08 16:03:02','2021-12-09 23:15:06',NULL,0,0,NULL),(218,'subscribers_engagement_score','completed',10,'2021-12-09 23:15:06','2021-12-09 23:15:48','2021-12-09 23:15:06','2021-12-09 23:15:48',NULL,0,0,NULL),(219,'subscribers_engagement_score','completed',10,'2021-12-09 23:15:48','2021-12-09 23:16:30','2021-12-09 23:15:48','2021-12-09 23:16:30',NULL,0,0,NULL),(220,'subscribers_engagement_score','completed',10,'2021-12-10 09:20:00','2021-12-10 09:58:17','2021-12-09 23:16:30','2021-12-10 09:58:17',NULL,0,0,NULL),(221,'subscribers_engagement_score','completed',10,'2021-12-11 15:23:00','2021-12-11 15:40:52','2021-12-10 09:58:17','2021-12-11 15:40:52',NULL,0,0,NULL),(222,'beamer','completed',10,'2021-12-15 18:41:00','2021-12-15 19:23:50','2021-12-11 05:55:06','2021-12-15 19:23:50',NULL,0,0,NULL),(223,'subscribers_engagement_score','completed',10,'2021-12-11 15:40:52','2021-12-11 15:41:34','2021-12-11 15:40:52','2021-12-11 15:41:34',NULL,0,0,NULL),(224,'subscribers_engagement_score','completed',10,'2021-12-12 01:44:00','2021-12-12 01:44:30','2021-12-11 15:41:34','2021-12-12 01:44:30',NULL,0,0,NULL),(225,'inactive_subscribers','completed',10,'2021-12-17 00:00:00','2021-12-17 00:49:33','2021-12-12 00:04:55','2021-12-17 00:49:33',NULL,0,0,'{\"last_subscriber_id\":1000}'),(226,'subscribers_engagement_score','completed',10,'2021-12-13 09:10:00','2021-12-13 09:46:00','2021-12-12 01:44:30','2021-12-13 09:46:00',NULL,0,0,NULL),(227,'subscribers_engagement_score','completed',10,'2021-12-13 09:46:00','2021-12-13 09:46:42','2021-12-13 09:46:00','2021-12-13 09:46:42',NULL,0,0,NULL),(228,'subscribers_engagement_score','completed',10,'2021-12-14 21:33:00','2021-12-14 22:02:15','2021-12-13 09:46:42','2021-12-14 22:02:15',NULL,0,0,NULL),(229,'woocommerce_sync','completed',10,'2021-12-24 00:00:00','2021-12-24 00:12:12','2021-12-14 00:33:52','2021-12-24 00:12:12',NULL,0,0,NULL),(230,'subscribers_engagement_score','completed',10,'2021-12-14 22:02:15','2021-12-14 22:02:58','2021-12-14 22:02:15','2021-12-14 22:02:58',NULL,0,0,NULL),(231,'subscribers_engagement_score','completed',10,'2021-12-15 07:12:00','2021-12-15 07:45:21','2021-12-14 22:02:58','2021-12-15 07:45:21',NULL,0,0,NULL),(232,'subscribers_engagement_score','completed',10,'2021-12-16 13:31:00','2021-12-16 14:20:20','2021-12-15 07:45:21','2021-12-16 14:20:20',NULL,0,0,NULL),(233,'export_files_cleanup','completed',10,'2021-12-24 00:00:00','2021-12-24 00:12:12','2021-12-15 19:23:28','2021-12-24 00:12:12',NULL,0,0,NULL),(234,'beamer','completed',10,'2021-12-22 10:02:00','2021-12-22 10:15:35','2021-12-15 19:24:11','2021-12-22 10:15:35',NULL,0,0,NULL),(235,'subscribers_engagement_score','completed',10,'2021-12-16 14:20:20','2021-12-16 14:21:03','2021-12-16 14:20:20','2021-12-16 14:21:03',NULL,0,0,NULL),(236,'subscribers_engagement_score','completed',10,'2021-12-17 00:08:00','2021-12-17 00:49:33','2021-12-16 14:21:03','2021-12-17 00:49:33',NULL,0,0,NULL),(237,'inactive_subscribers','completed',10,'2021-12-26 00:00:00','2021-12-26 01:13:21','2021-12-17 00:49:33','2021-12-26 01:13:21',NULL,0,0,'{\"last_subscriber_id\":1000}'),(238,'subscribers_engagement_score','completed',10,'2021-12-18 04:23:00','2021-12-18 04:25:46','2021-12-17 00:49:33','2021-12-18 04:25:46',NULL,0,0,NULL),(239,'subscribers_engagement_score','completed',10,'2021-12-18 04:25:46','2021-12-18 04:26:28','2021-12-18 04:25:46','2021-12-18 04:26:28',NULL,0,0,NULL),(240,'subscribers_engagement_score','completed',10,'2021-12-19 17:30:00','2021-12-19 18:27:44','2021-12-18 04:26:28','2021-12-19 18:27:44',NULL,0,0,NULL),(241,'subscribers_engagement_score','completed',10,'2021-12-19 18:27:44','2021-12-19 18:28:26','2021-12-19 18:27:44','2021-12-19 18:28:26',NULL,0,0,NULL),(242,'subscribers_engagement_score','completed',10,'2021-12-20 14:52:00','2021-12-20 15:11:52','2021-12-19 18:28:26','2021-12-20 15:11:52',NULL,0,0,NULL),(243,'subscribers_engagement_score','completed',10,'2021-12-21 10:02:00','2021-12-21 10:02:26','2021-12-20 15:11:52','2021-12-21 10:02:26',NULL,0,0,NULL),(244,'subscribers_engagement_score','completed',10,'2021-12-21 10:02:26','2021-12-21 10:03:08','2021-12-21 10:02:26','2021-12-21 10:03:08',NULL,0,0,NULL),(245,'subscribers_engagement_score','completed',10,'2021-12-22 01:50:00','2021-12-22 01:57:32','2021-12-21 10:03:08','2021-12-22 01:57:32',NULL,0,0,NULL),(246,'subscribers_engagement_score','completed',10,'2021-12-23 14:34:00','2021-12-23 14:37:32','2021-12-22 01:57:32','2021-12-23 14:37:32',NULL,0,0,NULL),(247,'beamer','completed',10,'2021-12-27 13:00:00','2021-12-27 13:49:26','2021-12-22 10:15:56','2021-12-27 13:49:26',NULL,0,0,NULL),(248,'subscribers_engagement_score','completed',10,'2021-12-23 14:37:32','2021-12-23 14:38:14','2021-12-23 14:37:32','2021-12-23 14:38:14',NULL,0,0,NULL),(249,'subscribers_engagement_score','completed',10,'2021-12-24 06:30:00','2021-12-24 06:34:53','2021-12-23 14:38:14','2021-12-24 06:34:53',NULL,0,0,NULL),(250,'export_files_cleanup','completed',10,'2021-12-27 00:00:00','2021-12-27 01:51:08','2021-12-24 06:34:30','2021-12-27 01:51:08',NULL,0,0,NULL),(251,'woocommerce_sync','completed',10,'2022-01-02 00:00:00','2022-01-02 00:05:19','2021-12-24 06:34:31','2022-01-02 00:05:19',NULL,0,0,NULL),(252,'subscribers_engagement_score','completed',10,'2021-12-25 07:08:00','2021-12-25 07:19:29','2021-12-24 06:34:53','2021-12-25 07:19:29',NULL,0,0,NULL),(253,'subscribers_engagement_score','completed',10,'2021-12-25 07:19:29','2021-12-25 07:20:12','2021-12-25 07:19:29','2021-12-25 07:20:12',NULL,0,0,NULL),(254,'subscribers_engagement_score','completed',10,'2021-12-26 09:38:00','2021-12-26 09:54:06','2021-12-25 07:20:12','2021-12-26 09:54:06',NULL,0,0,NULL),(255,'inactive_subscribers','completed',10,'2021-12-30 00:00:00','2021-12-30 00:00:46','2021-12-26 01:13:21','2021-12-30 00:00:46',NULL,0,0,'{\"last_subscriber_id\":1000}'),(256,'subscribers_engagement_score','completed',10,'2021-12-26 09:54:06','2021-12-26 09:54:49','2021-12-26 09:54:06','2021-12-26 09:54:49',NULL,0,0,NULL),(257,'subscribers_engagement_score','completed',10,'2021-12-27 00:58:00','2021-12-27 01:51:08','2021-12-26 09:54:49','2021-12-27 01:51:08',NULL,0,0,NULL),(258,'subscribers_engagement_score','completed',10,'2021-12-28 18:34:00','2021-12-28 19:32:52','2021-12-27 01:51:08','2021-12-28 19:32:52',NULL,0,0,NULL),(259,'export_files_cleanup','completed',10,'2022-01-09 00:00:00','2022-01-09 20:05:50','2021-12-27 01:51:31','2022-01-09 20:05:50',NULL,0,0,NULL),(260,'beamer','completed',10,'2022-01-03 04:51:00','2022-01-03 05:34:09','2021-12-27 13:49:49','2022-01-03 05:34:09',NULL,0,0,NULL),(261,'subscribers_engagement_score','completed',10,'2021-12-28 19:32:52','2021-12-28 19:33:35','2021-12-28 19:32:52','2021-12-28 19:33:35',NULL,0,0,NULL),(262,'subscribers_engagement_score','completed',10,'2021-12-29 15:36:00','2021-12-29 15:37:36','2021-12-28 19:33:35','2021-12-29 15:37:36',NULL,0,0,NULL),(263,'subscribers_engagement_score','completed',10,'2021-12-30 06:46:00','2021-12-30 07:08:37','2021-12-29 15:37:36','2021-12-30 07:08:37',NULL,0,0,NULL),(264,'inactive_subscribers','completed',10,'2022-01-05 00:00:00','2022-01-05 00:09:52','2021-12-30 00:00:46','2022-01-05 00:09:52',NULL,0,0,'{\"last_subscriber_id\":1000}'),(265,'subscribers_engagement_score','completed',10,'2021-12-30 07:08:37','2021-12-30 07:09:19','2021-12-30 07:08:37','2021-12-30 07:09:19',NULL,0,0,NULL),(266,'subscribers_engagement_score','completed',10,'2021-12-31 02:39:00','2021-12-31 03:00:32','2021-12-30 07:09:19','2021-12-31 03:00:32',NULL,0,0,NULL),(267,'subscribers_engagement_score','completed',10,'2022-01-01 03:35:00','2022-01-01 03:35:29','2021-12-31 03:00:32','2022-01-01 03:35:29',NULL,0,0,NULL),(268,'subscribers_engagement_score','completed',10,'2022-01-01 03:35:29','2022-01-01 03:36:11','2022-01-01 03:35:29','2022-01-01 03:36:11',NULL,0,0,NULL),(269,'subscribers_engagement_score','completed',10,'2022-01-02 23:28:00','2022-01-03 00:04:49','2022-01-01 03:36:11','2022-01-03 00:04:49',NULL,0,0,NULL),(270,'woocommerce_sync','completed',10,'2022-01-06 00:00:00','2022-01-06 00:26:34','2022-01-02 00:05:40','2022-01-06 00:26:34',NULL,0,0,NULL),(271,'subscribers_engagement_score','completed',10,'2022-01-03 00:04:49','2022-01-03 00:05:32','2022-01-03 00:04:49','2022-01-03 00:05:32',NULL,0,0,NULL),(272,'subscribers_engagement_score','completed',10,'2022-01-04 00:33:00','2022-01-04 00:39:50','2022-01-03 00:05:32','2022-01-04 00:39:50',NULL,0,0,NULL),(273,'beamer','completed',10,'2022-01-12 04:03:00','2022-01-12 04:04:49','2022-01-03 05:34:30','2022-01-12 04:04:49',NULL,0,0,NULL),(274,'stats_notification_automated_emails','completed',10,'2022-02-07 12:00:00','2022-02-07 12:32:23','2022-01-04 00:39:29','2022-02-07 12:32:23',NULL,0,0,NULL),(275,'subscribers_engagement_score','completed',10,'2022-01-04 00:39:50','2022-01-04 00:40:33','2022-01-04 00:39:50','2022-01-04 00:40:33',NULL,0,0,NULL),(276,'subscribers_engagement_score','completed',10,'2022-01-05 03:37:00','2022-01-05 04:25:48','2022-01-04 00:40:33','2022-01-05 04:25:48',NULL,0,0,NULL),(277,'inactive_subscribers','completed',10,'2022-01-12 00:00:00','2022-01-12 01:01:56','2022-01-05 00:09:52','2022-01-12 01:01:56',NULL,0,0,'{\"last_subscriber_id\":1000}'),(278,'subscribers_engagement_score','completed',10,'2022-01-05 04:25:48','2022-01-05 04:26:31','2022-01-05 04:25:48','2022-01-05 04:26:31',NULL,0,0,NULL),(279,'subscribers_engagement_score','completed',10,'2022-01-06 15:32:00','2022-01-06 15:50:05','2022-01-05 04:26:31','2022-01-06 15:50:05',NULL,0,0,NULL),(280,'woocommerce_sync','completed',10,'2022-01-16 00:00:00','2022-01-16 00:15:54','2022-01-06 00:26:56','2022-01-16 00:15:54',NULL,0,0,NULL),(281,'subscribers_engagement_score','completed',10,'2022-01-06 15:50:05','2022-01-06 15:50:49','2022-01-06 15:50:05','2022-01-06 15:50:49',NULL,0,0,NULL),(282,'subscribers_engagement_score','completed',10,'2022-01-07 05:27:00','2022-01-07 05:32:05','2022-01-06 15:50:49','2022-01-07 05:32:05',NULL,0,0,NULL),(283,'subscribers_engagement_score','completed',10,'2022-01-08 01:02:00','2022-01-08 01:19:19','2022-01-07 05:32:05','2022-01-08 01:19:19',NULL,0,0,NULL),(284,'subscribers_engagement_score','completed',10,'2022-01-08 01:19:19','2022-01-08 01:20:01','2022-01-08 01:19:19','2022-01-08 01:20:01',NULL,0,0,NULL),(285,'subscribers_engagement_score','completed',10,'2022-01-09 18:37:00','2022-01-09 20:05:50','2022-01-08 01:20:01','2022-01-09 20:05:50',NULL,0,0,NULL),(286,'subscribers_engagement_score','completed',10,'2022-01-09 20:05:50','2022-01-09 20:06:32','2022-01-09 20:05:50','2022-01-09 20:06:32',NULL,0,0,NULL),(287,'export_files_cleanup','completed',10,'2022-01-13 00:00:00','2022-01-13 18:50:38','2022-01-09 20:06:11','2022-01-13 18:50:38',NULL,0,0,NULL),(288,'subscribers_engagement_score','completed',10,'2022-01-10 22:24:00','2022-01-10 22:56:46','2022-01-09 20:06:32','2022-01-10 22:56:46',NULL,0,0,NULL),(289,'subscribers_engagement_score','completed',10,'2022-01-10 22:56:46','2022-01-10 22:57:28','2022-01-10 22:56:46','2022-01-10 22:57:28',NULL,0,0,NULL),(290,'subscribers_engagement_score','completed',10,'2022-01-10 22:57:28','2022-01-10 22:58:10','2022-01-10 22:57:28','2022-01-10 22:58:10',NULL,0,0,NULL),(291,'subscribers_engagement_score','completed',10,'2022-01-11 13:44:00','2022-01-11 13:50:43','2022-01-10 22:58:10','2022-01-11 13:50:43',NULL,0,0,NULL),(292,'subscribers_engagement_score','completed',10,'2022-01-12 07:50:00','2022-01-12 07:56:28','2022-01-11 13:50:43','2022-01-12 07:56:28',NULL,0,0,NULL),(293,'inactive_subscribers','completed',10,'2022-01-21 00:00:00','2022-01-21 00:35:09','2022-01-12 01:01:56','2022-01-21 00:35:09',NULL,0,0,'{\"last_subscriber_id\":1000}'),(294,'beamer','completed',10,'2022-01-22 15:35:00','2022-01-22 15:45:00','2022-01-12 04:05:11','2022-01-22 15:45:00',NULL,0,0,NULL),(295,'subscribers_engagement_score','completed',10,'2022-01-12 07:56:28','2022-01-12 07:57:09','2022-01-12 07:56:28','2022-01-12 07:57:09',NULL,0,0,NULL),(296,'subscribers_engagement_score','completed',10,'2022-01-13 18:46:00','2022-01-13 18:50:38','2022-01-12 07:57:09','2022-01-13 18:50:38',NULL,0,0,NULL),(297,'subscribers_engagement_score','completed',10,'2022-01-13 18:50:38','2022-01-13 18:51:20','2022-01-13 18:50:38','2022-01-13 18:51:20',NULL,0,0,NULL),(298,'export_files_cleanup','completed',10,'2022-01-20 00:00:00','2022-01-20 16:25:04','2022-01-13 18:50:59','2022-01-20 16:25:04',NULL,0,0,NULL),(299,'subscribers_engagement_score','completed',10,'2022-01-14 13:15:00','2022-01-14 14:00:38','2022-01-13 18:51:20','2022-01-14 14:00:38',NULL,0,0,NULL),(300,'subscribers_engagement_score','completed',10,'2022-01-15 15:10:00','2022-01-15 15:26:21','2022-01-14 14:00:38','2022-01-15 15:26:21',NULL,0,0,NULL),(301,'subscribers_engagement_score','completed',10,'2022-01-15 15:26:21','2022-01-15 15:27:03','2022-01-15 15:26:21','2022-01-15 15:27:03',NULL,0,0,NULL),(302,'subscribers_engagement_score','completed',10,'2022-01-16 14:35:00','2022-01-16 15:35:47','2022-01-15 15:27:03','2022-01-16 15:35:47',NULL,0,0,NULL),(303,'woocommerce_sync','completed',10,'2022-01-23 00:00:00','2022-01-23 00:16:43','2022-01-16 00:16:15','2022-01-23 00:16:43',NULL,0,0,NULL),(304,'subscribers_engagement_score','completed',10,'2022-01-16 15:35:47','2022-01-16 15:36:34','2022-01-16 15:35:47','2022-01-16 15:36:34',NULL,0,0,NULL),(305,'subscribers_engagement_score','completed',10,'2022-01-17 21:32:00','2022-01-17 21:47:15','2022-01-16 15:36:34','2022-01-17 21:47:15',NULL,0,0,NULL),(306,'subscribers_engagement_score','completed',10,'2022-01-17 21:47:15','2022-01-17 21:47:57','2022-01-17 21:47:15','2022-01-17 21:47:57',NULL,0,0,NULL),(307,'subscribers_engagement_score','completed',10,'2022-01-18 21:51:00','2022-01-18 21:57:32','2022-01-17 21:47:57','2022-01-18 21:57:32',NULL,0,0,NULL),(308,'subscribers_engagement_score','completed',10,'2022-01-18 21:57:32','2022-01-18 21:58:14','2022-01-18 21:57:32','2022-01-18 21:58:14',NULL,0,0,NULL),(309,'subscribers_engagement_score','completed',10,'2022-01-19 02:51:00','2022-01-19 02:54:58','2022-01-18 21:58:14','2022-01-19 02:54:58',NULL,0,0,NULL),(310,'subscribers_engagement_score','completed',10,'2022-01-20 15:59:00','2022-01-20 16:25:04','2022-01-19 02:54:58','2022-01-20 16:25:04',NULL,0,0,NULL),(311,'subscribers_engagement_score','completed',10,'2022-01-20 16:25:04','2022-01-20 16:25:47','2022-01-20 16:25:04','2022-01-20 16:25:47',NULL,0,0,NULL),(312,'export_files_cleanup','completed',10,'2022-01-27 00:00:00','2022-01-27 02:02:31','2022-01-20 16:25:26','2022-01-27 02:02:31',NULL,0,0,NULL),(313,'subscribers_engagement_score','completed',10,'2022-01-21 01:46:00','2022-01-21 02:30:28','2022-01-20 16:25:47','2022-01-21 02:30:28',NULL,0,0,NULL),(314,'inactive_subscribers','completed',10,'2022-01-25 00:00:00','2022-01-25 01:15:29','2022-01-21 00:35:09','2022-01-25 01:15:29',NULL,0,0,'{\"last_subscriber_id\":1000}'),(315,'subscribers_engagement_score','completed',10,'2022-01-22 01:38:00','2022-01-22 01:55:16','2022-01-21 02:30:28','2022-01-22 01:55:16',NULL,0,0,NULL),(316,'subscribers_engagement_score','completed',10,'2022-01-22 01:55:16','2022-01-22 01:55:58','2022-01-22 01:55:16','2022-01-22 01:55:58',NULL,0,0,NULL),(317,'subscribers_engagement_score','completed',10,'2022-01-23 07:02:00','2022-01-23 07:24:33','2022-01-22 01:55:58','2022-01-23 07:24:33',NULL,0,0,NULL),(318,'beamer','completed',10,'2022-01-29 05:30:00','2022-01-29 06:27:39','2022-01-22 15:45:21','2022-01-29 06:27:39',NULL,0,0,NULL),(319,'woocommerce_sync','completed',10,'2022-01-27 00:00:00','2022-01-27 02:02:31','2022-01-23 00:17:05','2022-01-27 02:02:31',NULL,0,0,NULL),(320,'subscribers_engagement_score','completed',10,'2022-01-23 07:24:33','2022-01-23 07:25:15','2022-01-23 07:24:33','2022-01-23 07:25:15',NULL,0,0,NULL),(321,'subscribers_engagement_score','completed',10,'2022-01-24 10:11:00','2022-01-24 10:25:49','2022-01-23 07:25:15','2022-01-24 10:25:49',NULL,0,0,NULL),(322,'subscribers_engagement_score','completed',10,'2022-01-24 10:25:49','2022-01-24 10:26:31','2022-01-24 10:25:49','2022-01-24 10:26:31',NULL,0,0,NULL),(323,'subscribers_engagement_score','completed',10,'2022-01-25 10:34:00','2022-01-25 10:49:59','2022-01-24 10:26:31','2022-01-25 10:49:59',NULL,0,0,NULL),(324,'inactive_subscribers','completed',10,'2022-02-04 00:00:00','2022-02-04 00:08:23','2022-01-25 01:15:29','2022-02-04 00:08:23',NULL,0,0,'{\"last_subscriber_id\":1000}'),(325,'subscribers_engagement_score','completed',10,'2022-01-25 10:49:59','2022-01-25 10:50:41','2022-01-25 10:49:59','2022-01-25 10:50:41',NULL,0,0,NULL),(326,'subscribers_engagement_score','completed',10,'2022-01-26 16:18:00','2022-01-26 16:35:35','2022-01-25 10:50:41','2022-01-26 16:35:35',NULL,0,0,NULL),(327,'subscribers_engagement_score','completed',10,'2022-01-26 16:35:35','2022-01-26 16:36:17','2022-01-26 16:35:35','2022-01-26 16:36:17',NULL,0,0,NULL),(328,'subscribers_engagement_score','completed',10,'2022-01-27 20:04:00','2022-01-27 20:34:14','2022-01-26 16:36:17','2022-01-27 20:34:14',NULL,0,0,NULL),(329,'export_files_cleanup','completed',10,'2022-02-04 00:00:00','2022-02-04 00:08:23','2022-01-27 02:02:53','2022-02-04 00:08:23',NULL,0,0,NULL),(330,'woocommerce_sync','completed',10,'2022-02-05 00:00:00','2022-02-05 00:34:12','2022-01-27 02:02:53','2022-02-05 00:34:12',NULL,0,0,NULL),(331,'subscribers_engagement_score','completed',10,'2022-01-27 20:34:14','2022-01-27 20:34:57','2022-01-27 20:34:14','2022-01-27 20:34:57',NULL,0,0,NULL),(332,'subscribers_engagement_score','completed',10,'2022-01-28 04:52:00','2022-01-28 05:31:23','2022-01-27 20:34:57','2022-01-28 05:31:23',NULL,0,0,NULL),(333,'subscribers_engagement_score','completed',10,'2022-01-29 23:52:00','2022-01-30 00:05:15','2022-01-28 05:31:23','2022-01-30 00:05:15',NULL,0,0,NULL),(334,'beamer','completed',10,'2022-02-02 04:02:00','2022-02-02 04:10:53','2022-01-29 06:28:00','2022-02-02 04:10:53',NULL,0,0,NULL),(335,'subscribers_engagement_score','completed',10,'2022-01-30 00:05:15','2022-01-30 00:05:58','2022-01-30 00:05:15','2022-01-30 00:05:58',NULL,0,0,NULL),(336,'subscribers_engagement_score','completed',10,'2022-01-31 21:48:00','2022-01-31 21:53:37','2022-01-30 00:05:58','2022-01-31 21:53:37',NULL,0,0,NULL),(337,'subscribers_engagement_score','completed',10,'2022-01-31 21:53:37','2022-01-31 21:54:20','2022-01-31 21:53:37','2022-01-31 21:54:20',NULL,0,0,NULL),(338,'subscribers_engagement_score','completed',10,'2022-02-01 08:15:00','2022-02-01 09:16:42','2022-01-31 21:54:20','2022-02-01 09:16:42',NULL,0,0,NULL),(339,'subscribers_engagement_score','completed',10,'2022-02-02 05:30:00','2022-02-02 06:12:42','2022-02-01 09:16:42','2022-02-02 06:12:42',NULL,0,0,NULL),(340,'beamer','completed',10,'2022-02-08 00:47:00','2022-02-08 01:10:00','2022-02-02 04:11:15','2022-02-08 01:10:00',NULL,0,0,NULL),(341,'subscribers_engagement_score','completed',10,'2022-02-02 06:12:42','2022-02-02 06:13:24','2022-02-02 06:12:42','2022-02-02 06:13:24',NULL,0,0,NULL),(342,'subscribers_engagement_score','completed',10,'2022-02-03 21:04:00','2022-02-03 21:38:43','2022-02-02 06:13:24','2022-02-03 21:38:43',NULL,0,0,NULL),(343,'subscribers_engagement_score','completed',10,'2022-02-03 21:38:43','2022-02-03 21:39:39','2022-02-03 21:38:43','2022-02-03 21:39:39',NULL,0,0,NULL),(344,'subscribers_engagement_score','completed',10,'2022-02-04 03:28:00','2022-02-04 03:29:54','2022-02-03 21:39:39','2022-02-04 03:29:54',NULL,0,0,NULL),(345,'inactive_subscribers','completed',10,'2022-02-10 00:00:00','2022-02-10 00:10:16','2022-02-04 00:08:23','2022-02-10 00:10:16',NULL,0,0,'{\"last_subscriber_id\":1000}'),(346,'export_files_cleanup','completed',10,'2022-02-08 00:00:00','2022-02-08 01:10:00','2022-02-04 03:29:32','2022-02-08 01:10:00',NULL,0,0,NULL),(347,'subscribers_engagement_score','completed',10,'2022-02-05 19:12:00','2022-02-05 19:55:37','2022-02-04 03:29:54','2022-02-05 19:55:37',NULL,0,0,NULL),(348,'woocommerce_sync','completed',10,'2022-02-13 00:00:00','2022-02-13 00:11:21','2022-02-05 19:55:16','2022-02-13 00:11:21',NULL,0,0,NULL),(349,'subscribers_engagement_score','completed',10,'2022-02-05 19:55:37','2022-02-05 19:56:19','2022-02-05 19:55:37','2022-02-05 19:56:19',NULL,0,0,NULL),(350,'subscribers_engagement_score','completed',10,'2022-02-06 02:00:00','2022-02-06 02:46:21','2022-02-05 19:56:19','2022-02-06 02:46:21',NULL,0,0,NULL),(351,'subscribers_engagement_score','completed',10,'2022-02-07 09:48:00','2022-02-07 09:49:17','2022-02-06 02:46:21','2022-02-07 09:49:17',NULL,0,0,NULL),(352,'subscribers_engagement_score','completed',10,'2022-02-07 09:49:17','2022-02-07 09:50:04','2022-02-07 09:49:17','2022-02-07 09:50:04',NULL,0,0,NULL),(353,'subscribers_engagement_score','completed',10,'2022-02-08 18:57:00','2022-02-08 19:01:19','2022-02-07 09:50:04','2022-02-08 19:01:19',NULL,0,0,NULL),(354,'stats_notification_automated_emails','completed',10,'2022-03-07 12:00:00','2022-03-07 12:09:20','2022-02-07 12:32:44','2022-03-07 12:09:20',NULL,0,0,NULL),(355,'export_files_cleanup','completed',10,'2022-02-14 00:00:00','2022-02-14 01:32:13','2022-02-08 01:10:21','2022-02-14 01:32:13',NULL,0,0,NULL),(356,'beamer','completed',10,'2022-02-17 01:10:00','2022-02-17 01:15:49','2022-02-08 01:10:21','2022-02-17 01:15:49',NULL,0,0,NULL),(357,'subscribers_engagement_score','completed',10,'2022-02-08 19:01:19','2022-02-08 19:02:05','2022-02-08 19:01:19','2022-02-08 19:02:05',NULL,0,0,NULL),(358,'subscribers_engagement_score','completed',10,'2022-02-09 12:30:00','2022-02-09 12:34:59','2022-02-08 19:02:05','2022-02-09 12:34:59',NULL,0,0,NULL),(359,'subscribers_engagement_score','completed',10,'2022-02-10 14:32:00','2022-02-10 15:55:08','2022-02-09 12:34:59','2022-02-10 15:55:08',NULL,0,0,NULL),(360,'inactive_subscribers','completed',10,'2022-02-17 00:00:00','2022-02-17 00:35:56','2022-02-10 00:10:16','2022-02-17 00:35:56',NULL,0,0,'{\"last_subscriber_id\":1000}'),(361,'subscribers_engagement_score','completed',10,'2022-02-10 15:55:08','2022-02-10 15:55:52','2022-02-10 15:55:08','2022-02-10 15:55:52',NULL,0,0,NULL),(362,'subscribers_engagement_score','completed',10,'2022-02-11 04:01:00','2022-02-11 04:26:30','2022-02-10 15:55:52','2022-02-11 04:26:30',NULL,0,0,NULL),(363,'subscribers_engagement_score','completed',10,'2022-02-11 04:26:30','2022-02-11 04:27:12','2022-02-11 04:26:30','2022-02-11 04:27:12',NULL,0,0,NULL),(364,'subscribers_engagement_score','completed',10,'2022-02-12 11:33:00','2022-02-12 11:36:59','2022-02-11 04:27:12','2022-02-12 11:36:59',NULL,0,0,NULL),(365,'subscribers_engagement_score','completed',10,'2022-02-12 11:36:59','2022-02-12 11:37:41','2022-02-12 11:36:59','2022-02-12 11:37:41',NULL,0,0,NULL),(366,'subscribers_engagement_score','completed',10,'2022-02-13 15:28:00','2022-02-13 15:43:15','2022-02-12 11:37:41','2022-02-13 15:43:15',NULL,0,0,NULL),(367,'woocommerce_sync','completed',10,'2022-02-14 00:00:00','2022-02-14 01:32:14','2022-02-13 00:11:42','2022-02-14 01:32:14',NULL,0,0,NULL),(368,'subscribers_engagement_score','completed',10,'2022-02-13 15:43:15','2022-02-13 15:44:04','2022-02-13 15:43:15','2022-02-13 15:44:04',NULL,0,0,NULL),(369,'subscribers_engagement_score','completed',10,'2022-02-14 04:30:00','2022-02-14 04:40:24','2022-02-13 15:44:04','2022-02-14 04:40:24',NULL,0,0,NULL),(370,'export_files_cleanup','completed',10,'2022-02-22 00:00:00','2022-02-22 00:24:19','2022-02-14 01:32:34','2022-02-22 00:24:19',NULL,0,0,NULL),(371,'woocommerce_sync','completed',10,'2022-02-25 00:00:00','2022-02-25 00:03:39','2022-02-14 01:32:34','2022-02-25 00:03:39',NULL,0,0,NULL),(372,'subscribers_engagement_score','completed',10,'2022-02-15 06:24:00','2022-02-15 06:24:25','2022-02-14 04:40:24','2022-02-15 06:24:25',NULL,0,0,NULL),(373,'subscribers_engagement_score','completed',10,'2022-02-15 06:24:25','2022-02-15 06:25:08','2022-02-15 06:24:25','2022-02-15 06:25:08',NULL,0,0,NULL),(374,'subscribers_engagement_score','completed',10,'2022-02-16 01:02:00','2022-02-16 01:02:26','2022-02-15 06:25:08','2022-02-16 01:02:26',NULL,0,0,NULL),(375,'subscribers_engagement_score','completed',10,'2022-02-17 12:47:00','2022-02-17 13:01:32','2022-02-16 01:02:26','2022-02-17 13:01:32',NULL,0,0,NULL),(376,'inactive_subscribers','completed',10,'2022-02-22 00:00:00','2022-02-22 00:24:19','2022-02-17 00:35:56','2022-02-22 00:24:19',NULL,0,0,'{\"last_subscriber_id\":1000}'),(377,'beamer','completed',10,'2022-02-26 13:44:00','2022-02-26 15:03:22','2022-02-17 01:16:10','2022-02-26 15:03:22',NULL,0,0,NULL),(378,'subscribers_engagement_score','completed',10,'2022-02-17 13:01:32','2022-02-17 13:02:19','2022-02-17 13:01:32','2022-02-17 13:02:19',NULL,0,0,NULL),(379,'subscribers_engagement_score','completed',10,'2022-02-18 03:41:00','2022-02-18 03:53:08','2022-02-17 13:02:19','2022-02-18 03:53:08',NULL,0,0,NULL),(380,'subscribers_engagement_score','completed',10,'2022-02-19 15:22:00','2022-02-19 15:24:15','2022-02-18 03:53:08','2022-02-19 15:24:15',NULL,0,0,NULL),(381,'subscribers_engagement_score','completed',10,'2022-02-19 15:24:15','2022-02-19 15:24:58','2022-02-19 15:24:15','2022-02-19 15:24:58',NULL,0,0,NULL),(382,'subscribers_engagement_score','completed',10,'2022-02-20 00:30:00','2022-02-20 00:52:04','2022-02-19 15:24:58','2022-02-20 00:52:04',NULL,0,0,NULL),(383,'subscribers_engagement_score','completed',10,'2022-02-21 04:28:00','2022-02-21 04:34:03','2022-02-20 00:52:04','2022-02-21 04:34:03',NULL,0,0,NULL),(384,'subscribers_engagement_score','completed',10,'2022-02-21 04:34:03','2022-02-21 04:34:45','2022-02-21 04:34:03','2022-02-21 04:34:45',NULL,0,0,NULL),(385,'subscribers_engagement_score','completed',10,'2022-02-22 14:14:00','2022-02-22 14:38:10','2022-02-21 04:34:45','2022-02-22 14:38:10',NULL,0,0,NULL),(386,'inactive_subscribers','completed',10,'2022-02-28 00:00:00','2022-02-28 00:03:35','2022-02-22 00:24:19','2022-02-28 00:03:35',NULL,0,0,'{\"last_subscriber_id\":1000}'),(387,'export_files_cleanup','completed',10,'2022-02-28 00:00:00','2022-02-28 00:03:35','2022-02-22 14:37:48','2022-02-28 00:03:35',NULL,0,0,NULL),(388,'subscribers_engagement_score','completed',10,'2022-02-22 14:38:10','2022-02-22 14:38:55','2022-02-22 14:38:10','2022-02-22 14:38:55',NULL,0,0,NULL),(389,'subscribers_engagement_score','completed',10,'2022-02-23 23:29:00','2022-02-24 00:31:21','2022-02-22 14:38:55','2022-02-24 00:31:21',NULL,0,0,NULL),(390,'subscribers_engagement_score','completed',10,'2022-02-24 00:31:21','2022-02-24 00:32:04','2022-02-24 00:31:21','2022-02-24 00:32:04',NULL,0,0,NULL),(391,'subscribers_engagement_score','completed',10,'2022-02-25 13:03:00','2022-02-25 13:41:54','2022-02-24 00:32:04','2022-02-25 13:41:54',NULL,0,0,NULL),(392,'woocommerce_sync','completed',10,'2022-03-02 00:00:00','2022-03-02 00:23:04','2022-02-25 00:04:01','2022-03-02 00:23:04',NULL,0,0,NULL),(393,'subscribers_engagement_score','completed',10,'2022-02-25 13:41:54','2022-02-25 13:42:36','2022-02-25 13:41:54','2022-02-25 13:42:36',NULL,0,0,NULL),(394,'subscribers_engagement_score','completed',10,'2022-02-26 05:48:00','2022-02-26 05:53:00','2022-02-25 13:42:36','2022-02-26 05:53:00',NULL,0,0,NULL),(395,'subscribers_engagement_score','completed',10,'2022-02-27 05:25:00','2022-02-27 05:53:42','2022-02-26 05:53:00','2022-02-27 05:53:42',NULL,0,0,NULL),(396,'beamer','completed',10,'2022-03-05 03:15:00','2022-03-05 03:15:28','2022-02-26 15:03:43','2022-03-05 03:15:28',NULL,0,0,NULL),(397,'subscribers_engagement_score','completed',10,'2022-02-27 05:53:42','2022-02-27 05:54:25','2022-02-27 05:53:42','2022-02-27 05:54:25',NULL,0,0,NULL),(398,'subscribers_engagement_score','completed',10,'2022-02-28 12:56:00','2022-02-28 13:13:02','2022-02-27 05:54:25','2022-02-28 13:13:02',NULL,0,0,NULL),(399,'inactive_subscribers','completed',10,'2022-03-09 00:00:00','2022-03-09 00:31:22','2022-02-28 00:03:35','2022-03-09 00:31:22',NULL,0,0,'{\"last_subscriber_id\":1000}'),(400,'export_files_cleanup','completed',10,'2022-03-08 00:00:00','2022-03-08 22:08:55','2022-02-28 00:03:56','2022-03-08 22:08:55',NULL,0,0,NULL),(401,'subscribers_engagement_score','completed',10,'2022-02-28 13:13:02','2022-02-28 13:13:44','2022-02-28 13:13:02','2022-02-28 13:13:44',NULL,0,0,NULL),(402,'subscribers_engagement_score','completed',10,'2022-03-01 08:22:00','2022-03-01 09:24:13','2022-02-28 13:13:44','2022-03-01 09:24:13',NULL,0,0,NULL),(403,'subscribers_engagement_score','completed',10,'2022-03-02 09:34:00','2022-03-02 10:11:51','2022-03-01 09:24:13','2022-03-02 10:11:51',NULL,0,0,NULL),(404,'woocommerce_sync','scheduled',10,'2022-03-12 00:00:00',NULL,'2022-03-02 00:23:25','2022-03-02 00:23:25',NULL,NULL,0,NULL),(405,'subscribers_engagement_score','completed',10,'2022-03-02 10:11:51','2022-03-02 10:12:34','2022-03-02 10:11:51','2022-03-02 10:12:34',NULL,0,0,NULL),(406,'subscribers_engagement_score','completed',10,'2022-03-03 14:23:00','2022-03-03 14:49:00','2022-03-02 10:12:34','2022-03-03 14:49:00',NULL,0,0,NULL),(407,'subscribers_engagement_score','completed',10,'2022-03-03 14:49:00','2022-03-03 14:49:42','2022-03-03 14:49:00','2022-03-03 14:49:42',NULL,0,0,NULL),(408,'subscribers_engagement_score','completed',10,'2022-03-04 04:47:00','2022-03-04 05:41:22','2022-03-03 14:49:42','2022-03-04 05:41:22',NULL,0,0,NULL),(409,'subscribers_engagement_score','completed',10,'2022-03-05 07:34:00','2022-03-05 08:33:05','2022-03-04 05:41:22','2022-03-05 08:33:05',NULL,0,0,NULL),(410,'beamer','scheduled',10,'2022-03-11 12:02:00',NULL,'2022-03-05 03:15:52','2022-03-05 03:15:52',NULL,NULL,0,NULL),(411,'subscribers_engagement_score','completed',10,'2022-03-05 08:33:05','2022-03-05 08:33:47','2022-03-05 08:33:05','2022-03-05 08:33:47',NULL,0,0,NULL),(412,'subscribers_engagement_score','completed',10,'2022-03-06 08:37:00','2022-03-06 10:23:03','2022-03-05 08:33:47','2022-03-06 10:23:03',NULL,0,0,NULL),(413,'subscribers_engagement_score','completed',10,'2022-03-06 10:23:03','2022-03-06 10:23:49','2022-03-06 10:23:03','2022-03-06 10:23:49',NULL,0,0,NULL),(414,'subscribers_engagement_score','completed',10,'2022-03-07 22:47:00','2022-03-07 23:01:15','2022-03-06 10:23:49','2022-03-07 23:01:15',NULL,0,0,NULL),(415,'stats_notification_automated_emails','scheduled',10,'2022-04-04 12:00:00',NULL,'2022-03-07 12:09:41','2022-03-07 12:09:41',NULL,NULL,0,NULL),(416,'subscribers_engagement_score','completed',10,'2022-03-07 23:01:15','2022-03-07 23:02:01','2022-03-07 23:01:15','2022-03-07 23:02:01',NULL,0,0,NULL),(417,'subscribers_engagement_score','completed',10,'2022-03-08 21:53:00','2022-03-08 22:08:55','2022-03-07 23:02:01','2022-03-08 22:08:55',NULL,0,0,NULL),(418,'subscribers_engagement_score','completed',10,'2022-03-09 06:24:00','2022-03-09 06:25:06','2022-03-08 22:08:55','2022-03-09 06:25:06',NULL,0,0,NULL),(419,'export_files_cleanup','scheduled',10,'2022-03-17 00:00:00',NULL,'2022-03-08 22:09:17','2022-03-08 22:09:17',NULL,NULL,0,NULL),(420,'inactive_subscribers','scheduled',10,'2022-03-15 00:00:00',NULL,'2022-03-09 00:31:22','2022-03-09 00:31:22',NULL,NULL,0,NULL),(421,'subscribers_engagement_score','completed',10,'2022-03-09 06:25:06','2022-03-09 06:25:49','2022-03-09 06:25:06','2022-03-09 06:25:49',NULL,0,0,NULL),(422,'subscribers_engagement_score','completed',10,'2022-03-10 14:51:00','2022-03-10 15:29:41','2022-03-09 06:25:49','2022-03-10 15:29:41',NULL,0,0,NULL),(423,'subscribers_engagement_score','completed',10,'2022-03-10 15:29:41','2022-03-10 15:30:40','2022-03-10 15:29:41','2022-03-10 15:30:40',NULL,0,0,NULL),(424,'subscribers_engagement_score','scheduled',10,'2022-03-11 10:39:00',NULL,'2022-03-10 15:30:40','2022-03-10 15:30:40',NULL,NULL,0,NULL); /*!40000 ALTER TABLE `wp_mailpoet_scheduled_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_segments` -- DROP TABLE IF EXISTS `wp_mailpoet_segments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_segments` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL, `type` varchar(90) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'default', `description` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `average_engagement_score` float unsigned DEFAULT NULL, `average_engagement_score_updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), KEY `average_engagement_score_updated_at` (`average_engagement_score_updated_at`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_segments` -- LOCK TABLES `wp_mailpoet_segments` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_segments` DISABLE KEYS */; INSERT INTO `wp_mailpoet_segments` VALUES (1,'WordPress Users','wp_users','This list contains all of your WordPress users.','2021-09-06 16:26:02','2022-03-10 15:29:33',NULL,NULL,'2022-03-10 15:29:41'),(2,'WooCommerce Customers','woocommerce_users','This list contains all of your WooCommerce customers.','2021-09-06 16:26:02','2022-03-10 15:29:33',NULL,NULL,'2022-03-10 15:29:41'),(3,'Newsletter mailing list','default','This list is automatically created when you install MailPoet.','2021-09-06 16:26:02','2022-03-10 15:29:33',NULL,NULL,'2022-03-10 15:29:41'); /*!40000 ALTER TABLE `wp_mailpoet_segments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_sending_queues` -- DROP TABLE IF EXISTS `wp_mailpoet_sending_queues`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_sending_queues` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `task_id` int(11) unsigned NOT NULL, `newsletter_id` int(11) unsigned NOT NULL, `newsletter_rendered_body` longtext COLLATE utf8mb4_unicode_520_ci, `newsletter_rendered_subject` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `subscribers` longtext COLLATE utf8mb4_unicode_520_ci, `count_total` int(11) unsigned NOT NULL DEFAULT '0', `count_processed` int(11) unsigned NOT NULL DEFAULT '0', `count_to_process` int(11) unsigned NOT NULL DEFAULT '0', `meta` longtext COLLATE utf8mb4_unicode_520_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `task_id` (`task_id`), KEY `newsletter_id` (`newsletter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_sending_queues` -- LOCK TABLES `wp_mailpoet_sending_queues` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_sending_queues` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_sending_queues` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_settings` -- DROP TABLE IF EXISTS `wp_mailpoet_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_settings` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_520_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=19906 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_settings` -- LOCK TABLES `wp_mailpoet_settings` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_settings` DISABLE KEYS */; INSERT INTO `wp_mailpoet_settings` VALUES (1,'cron_trigger','a:1:{s:6:\"method\";s:9:\"WordPress\";}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(2,'sender','a:2:{s:4:\"name\";s:15:\"Michael Bennett\";s:7:\"address\";s:22:\"michaelbennett7@me.com\";}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(3,'signup_confirmation','a:1:{s:7:\"enabled\";b:1;}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(4,'installed_at','2021-09-06 16:26:02','2021-09-06 16:26:02','2021-09-06 16:26:02'),(5,'captcha','a:3:{s:4:\"type\";s:8:\"built-in\";s:20:\"recaptcha_site_token\";s:0:\"\";s:22:\"recaptcha_secret_token\";s:0:\"\";}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(6,'subscriber_email_notification','a:3:{s:7:\"enabled\";b:1;s:9:\"automated\";b:1;s:7:\"address\";s:22:\"michaelbennett7@me.com\";}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(7,'stats_notifications','a:3:{s:7:\"enabled\";b:1;s:7:\"address\";s:22:\"michaelbennett7@me.com\";s:9:\"automated\";b:1;}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(8,'woocommerce','a:1:{s:17:\"optin_on_checkout\";a:2:{s:7:\"enabled\";b:1;s:7:\"message\";s:79:\"I would like to receive exclusive emails with discounts and product information\";}}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(9,'mta_log','a:6:{s:4:\"sent\";N;s:7:\"started\";i:1630945562;s:6:\"status\";N;s:13:\"retry_attempt\";N;s:8:\"retry_at\";N;s:5:\"error\";N;}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(10,'3rd_party_libs','a:1:{s:7:\"enabled\";s:1:\"1\";}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(11,'subscription','a:1:{s:5:\"pages\";a:5:{s:11:\"unsubscribe\";i:385;s:6:\"manage\";i:385;s:12:\"confirmation\";i:385;s:7:\"captcha\";i:385;s:19:\"confirm_unsubscribe\";i:385;}}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(13,'db_version','3.68.0','2021-09-06 16:26:02','2021-09-06 16:26:02'),(14,'updates_log','a:1:{i:0;a:3:{s:16:\"previous_version\";N;s:11:\"new_version\";s:6:\"3.68.0\";s:4:\"date\";s:19:\"2021-09-06 16:26:02\";}}','2021-09-06 16:26:02','2021-09-06 16:26:02'),(15,'cron_trigger_wordpress','a:1:{s:11:\"last_run_at\";i:1646951844;}','2021-09-06 16:26:44','2022-03-10 22:37:24'),(16,'cron_daemon','a:8:{s:5:\"token\";s:5:\"gdtoj\";s:6:\"status\";s:8:\"inactive\";s:15:\"run_accessed_at\";i:1646926259;s:14:\"run_started_at\";i:1646926265;s:16:\"run_completed_at\";i:1646926266;s:10:\"last_error\";N;s:15:\"last_error_date\";N;s:10:\"updated_at\";i:1646926266;}','2021-09-06 16:26:44','2022-03-10 22:37:24'),(29,'last_announcement_date','1628677406','2021-09-06 16:27:09','2022-03-05 03:15:28'); /*!40000 ALTER TABLE `wp_mailpoet_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_statistics_clicks` -- DROP TABLE IF EXISTS `wp_mailpoet_statistics_clicks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_statistics_clicks` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `subscriber_id` int(11) unsigned NOT NULL, `queue_id` int(11) unsigned NOT NULL, `link_id` int(11) unsigned NOT NULL, `user_agent_id` int(11) unsigned DEFAULT NULL, `user_agent_type` tinyint(1) NOT NULL DEFAULT '0', `count` int(11) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `newsletter_id_subscriber_id_user_agent_type` (`newsletter_id`,`subscriber_id`,`user_agent_type`), KEY `queue_id` (`queue_id`), KEY `subscriber_id` (`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_statistics_clicks` -- LOCK TABLES `wp_mailpoet_statistics_clicks` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_statistics_clicks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_statistics_clicks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_statistics_forms` -- DROP TABLE IF EXISTS `wp_mailpoet_statistics_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_statistics_forms` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `form_id` int(11) unsigned NOT NULL, `subscriber_id` int(11) unsigned NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `form_subscriber` (`form_id`,`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_statistics_forms` -- LOCK TABLES `wp_mailpoet_statistics_forms` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_statistics_forms` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_statistics_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_statistics_newsletters` -- DROP TABLE IF EXISTS `wp_mailpoet_statistics_newsletters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_statistics_newsletters` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `subscriber_id` int(11) unsigned NOT NULL, `queue_id` int(11) unsigned NOT NULL, `sent_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `newsletter_id` (`newsletter_id`), KEY `subscriber_id` (`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_statistics_newsletters` -- LOCK TABLES `wp_mailpoet_statistics_newsletters` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_statistics_newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_statistics_newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_statistics_opens` -- DROP TABLE IF EXISTS `wp_mailpoet_statistics_opens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_statistics_opens` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `subscriber_id` int(11) unsigned NOT NULL, `queue_id` int(11) unsigned NOT NULL, `user_agent_id` int(11) unsigned DEFAULT NULL, `user_agent_type` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `newsletter_id_subscriber_id_user_agent_type` (`newsletter_id`,`subscriber_id`,`user_agent_type`), KEY `queue_id` (`queue_id`), KEY `subscriber_id` (`subscriber_id`), KEY `created_at` (`created_at`), KEY `subscriber_id_created_at` (`subscriber_id`,`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_statistics_opens` -- LOCK TABLES `wp_mailpoet_statistics_opens` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_statistics_opens` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_statistics_opens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_statistics_unsubscribes` -- DROP TABLE IF EXISTS `wp_mailpoet_statistics_unsubscribes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_statistics_unsubscribes` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned DEFAULT NULL, `subscriber_id` int(11) unsigned NOT NULL, `queue_id` int(11) unsigned DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `source` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT 'unknown', `meta` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `newsletter_id_subscriber_id` (`newsletter_id`,`subscriber_id`), KEY `queue_id` (`queue_id`), KEY `subscriber_id` (`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_statistics_unsubscribes` -- LOCK TABLES `wp_mailpoet_statistics_unsubscribes` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_statistics_unsubscribes` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_statistics_unsubscribes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_statistics_woocommerce_purchases` -- DROP TABLE IF EXISTS `wp_mailpoet_statistics_woocommerce_purchases`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_statistics_woocommerce_purchases` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `subscriber_id` int(11) unsigned NOT NULL, `queue_id` int(11) unsigned NOT NULL, `click_id` int(11) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL, `order_currency` char(3) COLLATE utf8mb4_unicode_520_ci NOT NULL, `order_price_total` float NOT NULL COMMENT 'With shipping and taxes in order_currency', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `click_id_order_id` (`click_id`,`order_id`), KEY `newsletter_id` (`newsletter_id`), KEY `queue_id` (`queue_id`), KEY `subscriber_id` (`subscriber_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_statistics_woocommerce_purchases` -- LOCK TABLES `wp_mailpoet_statistics_woocommerce_purchases` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_statistics_woocommerce_purchases` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_statistics_woocommerce_purchases` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_stats_notifications` -- DROP TABLE IF EXISTS `wp_mailpoet_stats_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_stats_notifications` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `newsletter_id` int(11) unsigned NOT NULL, `task_id` int(11) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `newsletter_id_task_id` (`newsletter_id`,`task_id`), KEY `task_id` (`task_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_stats_notifications` -- LOCK TABLES `wp_mailpoet_stats_notifications` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_stats_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_stats_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_subscriber_custom_field` -- DROP TABLE IF EXISTS `wp_mailpoet_subscriber_custom_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_subscriber_custom_field` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `subscriber_id` int(11) unsigned NOT NULL, `custom_field_id` int(11) unsigned NOT NULL, `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `subscriber_id_custom_field_id` (`subscriber_id`,`custom_field_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_subscriber_custom_field` -- LOCK TABLES `wp_mailpoet_subscriber_custom_field` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_subscriber_custom_field` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_subscriber_custom_field` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_subscriber_ips` -- DROP TABLE IF EXISTS `wp_mailpoet_subscriber_ips`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_subscriber_ips` ( `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`created_at`,`ip`), KEY `ip` (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_subscriber_ips` -- LOCK TABLES `wp_mailpoet_subscriber_ips` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_subscriber_ips` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_subscriber_ips` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_subscriber_segment` -- DROP TABLE IF EXISTS `wp_mailpoet_subscriber_segment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_subscriber_segment` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `subscriber_id` int(11) unsigned NOT NULL, `segment_id` int(11) unsigned NOT NULL, `status` varchar(12) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'subscribed', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `subscriber_segment` (`subscriber_id`,`segment_id`), KEY `segment_id` (`segment_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_subscriber_segment` -- LOCK TABLES `wp_mailpoet_subscriber_segment` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_subscriber_segment` DISABLE KEYS */; INSERT INTO `wp_mailpoet_subscriber_segment` VALUES (1,1,1,'subscribed','2021-09-06 16:26:02','2021-09-06 16:26:02'),(2,2,1,'subscribed','2021-09-06 16:26:02','2021-09-06 16:26:02'); /*!40000 ALTER TABLE `wp_mailpoet_subscriber_segment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_subscribers` -- DROP TABLE IF EXISTS `wp_mailpoet_subscribers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_subscribers` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `wp_user_id` bigint(20) DEFAULT NULL, `is_woocommerce_user` int(1) NOT NULL DEFAULT '0', `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `email` varchar(150) COLLATE utf8mb4_unicode_520_ci NOT NULL, `status` varchar(12) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'unconfirmed', `subscribed_ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `confirmed_ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `confirmed_at` timestamp NULL DEFAULT NULL, `last_subscribed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, `unconfirmed_data` longtext COLLATE utf8mb4_unicode_520_ci, `source` enum('form','imported','administrator','api','wordpress_user','woocommerce_user','woocommerce_checkout','unknown') COLLATE utf8mb4_unicode_520_ci DEFAULT 'unknown', `count_confirmations` int(11) unsigned NOT NULL DEFAULT '0', `unsubscribe_token` char(15) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `link_token` char(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `engagement_score` float unsigned DEFAULT NULL, `engagement_score_updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `email` (`email`), UNIQUE KEY `unsubscribe_token` (`unsubscribe_token`), KEY `wp_user_id` (`wp_user_id`), KEY `updated_at` (`updated_at`), KEY `status_deleted_at` (`status`,`deleted_at`), KEY `last_subscribed_at` (`last_subscribed_at`), KEY `engagement_score_updated_at` (`engagement_score_updated_at`), KEY `link_token` (`link_token`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_subscribers` -- LOCK TABLES `wp_mailpoet_subscribers` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_subscribers` DISABLE KEYS */; INSERT INTO `wp_mailpoet_subscribers` VALUES (1,1,0,'eessel','','ekow@esselwebdesign.com','unconfirmed',NULL,NULL,NULL,NULL,'2021-09-06 16:26:02','2022-02-11 04:26:28',NULL,NULL,'wordpress_user',0,'5zf34cj92uo8s0s','0f6357',NULL,'2022-02-11 04:26:30'),(2,2,0,'Michael','Bennett','michaelbennett7@me.com','unconfirmed',NULL,NULL,NULL,NULL,'2021-09-06 16:26:02','2022-02-11 04:26:28',NULL,NULL,'wordpress_user',0,'17eari4ps1a88oo','5d2a12',NULL,'2022-02-11 04:26:30'); /*!40000 ALTER TABLE `wp_mailpoet_subscribers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_user_agents` -- DROP TABLE IF EXISTS `wp_mailpoet_user_agents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_user_agents` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `hash` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `hash` (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_user_agents` -- LOCK TABLES `wp_mailpoet_user_agents` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_user_agents` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_user_agents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mailpoet_user_flags` -- DROP TABLE IF EXISTS `wp_mailpoet_user_flags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mailpoet_user_flags` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL, `value` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `user_id_name` (`user_id`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mailpoet_user_flags` -- LOCK TABLES `wp_mailpoet_user_flags` WRITE; /*!40000 ALTER TABLE `wp_mailpoet_user_flags` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_mailpoet_user_flags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_action_meta` -- DROP TABLE IF EXISTS `wp_nf3_action_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_action_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `key` longtext NOT NULL, `value` longtext, `meta_key` longtext, `meta_value` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_action_meta` -- LOCK TABLES `wp_nf3_action_meta` WRITE; /*!40000 ALTER TABLE `wp_nf3_action_meta` DISABLE KEYS */; INSERT INTO `wp_nf3_action_meta` VALUES (1,1,'objectType','Action','objectType','Action'),(2,1,'objectDomain','actions','objectDomain','actions'),(3,1,'editActive','','editActive',''),(4,1,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(5,1,'payment_gateways','','payment_gateways',''),(6,1,'payment_total','','payment_total',''),(7,1,'tag','','tag',''),(8,1,'to','{wp:admin_email}','to','{wp:admin_email}'),(9,1,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(10,1,'email_message','{fields_table}','email_message','{fields_table}'),(11,1,'from_name','','from_name',''),(12,1,'from_address','','from_address',''),(13,1,'reply_to','','reply_to',''),(14,1,'email_format','html','email_format','html'),(15,1,'cc','','cc',''),(16,1,'bcc','','bcc',''),(17,1,'attach_csv','','attach_csv',''),(18,1,'redirect_url','','redirect_url',''),(19,1,'email_message_plain','','email_message_plain',''),(20,2,'to','','to',''),(21,2,'subject','This is an email action.','subject','This is an email action.'),(22,2,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(23,2,'objectType','Action','objectType','Action'),(24,2,'objectDomain','actions','objectDomain','actions'),(25,2,'editActive','','editActive',''),(26,2,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(27,2,'payment_gateways','','payment_gateways',''),(28,2,'payment_total','','payment_total',''),(29,2,'tag','','tag',''),(30,2,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),(31,2,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),(32,2,'from_name','','from_name',''),(33,2,'from_address','','from_address',''),(34,2,'reply_to','','reply_to',''),(35,2,'email_format','html','email_format','html'),(36,2,'cc','','cc',''),(37,2,'bcc','','bcc',''),(38,2,'attach_csv','','attach_csv',''),(39,2,'email_message_plain','','email_message_plain',''),(40,3,'objectType','Action','objectType','Action'),(41,3,'objectDomain','actions','objectDomain','actions'),(42,3,'editActive','','editActive',''),(43,3,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(44,3,'payment_gateways','','payment_gateways',''),(45,3,'payment_total','','payment_total',''),(46,3,'tag','','tag',''),(47,3,'to','michaelbennett7@me.com','to','michaelbennett7@me.com'),(48,3,'email_subject','New message from {field:name}','email_subject','New message from {field:name}'),(49,3,'email_message','<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">{all_fields_table}</span></p><p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">-{field:name} ( )</span><br></p>','email_message','<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">{all_fields_table}</span></p><p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">-{field:name} ( )</span><br></p>'),(50,3,'from_name','','from_name',''),(51,3,'from_address','','from_address',''),(52,3,'reply_to','','reply_to',''),(53,3,'email_format','html','email_format','html'),(54,3,'cc','','cc',''),(55,3,'bcc','','bcc',''),(56,3,'attach_csv','0','attach_csv','0'),(57,3,'email_message_plain','','email_message_plain',''),(58,4,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(59,4,'objectType','Action','objectType','Action'),(60,4,'objectDomain','actions','objectDomain','actions'),(61,4,'editActive','','editActive',''),(62,4,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(63,4,'payment_gateways','','payment_gateways',''),(64,4,'payment_total','','payment_total',''),(65,4,'tag','','tag',''),(66,4,'to','{wp:admin_email}','to','{wp:admin_email}'),(67,4,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(68,4,'email_message','{fields_table}','email_message','{fields_table}'),(69,4,'from_name','','from_name',''),(70,4,'from_address','','from_address',''),(71,4,'reply_to','','reply_to',''),(72,4,'email_format','html','email_format','html'),(73,4,'cc','','cc',''),(74,4,'bcc','','bcc',''),(75,4,'attach_csv','','attach_csv',''),(76,4,'redirect_url','','redirect_url',''),(77,4,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to .</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to .</p>'),(78,4,'email_message_plain','','email_message_plain',''),(79,1,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(80,1,'submitter_email','','submitter_email',''),(81,1,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(82,1,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(83,1,'set_subs_to_expire','0','set_subs_to_expire','0'),(84,1,'subs_expire_time','90','subs_expire_time','90'),(85,3,'drawerDisabled','','drawerDisabled',''),(86,4,'drawerDisabled','','drawerDisabled',''),(87,5,'objectType','Action','objectType','Action'),(88,5,'objectDomain','actions','objectDomain','actions'),(89,5,'editActive','','editActive',''),(90,5,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(91,5,'payment_gateways','','payment_gateways',''),(92,5,'payment_total','','payment_total',''),(93,5,'tag','','tag',''),(94,5,'to','{wp:admin_email}','to','{wp:admin_email}'),(95,5,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(96,5,'email_message','{fields_table}','email_message','{fields_table}'),(97,5,'from_name','','from_name',''),(98,5,'from_address','','from_address',''),(99,5,'reply_to','','reply_to',''),(100,5,'email_format','html','email_format','html'),(101,5,'cc','','cc',''),(102,5,'bcc','','bcc',''),(103,5,'attach_csv','','attach_csv',''),(104,5,'redirect_url','','redirect_url',''),(105,5,'email_message_plain','','email_message_plain',''),(106,5,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(107,5,'submitter_email','email_1629685976005','submitter_email','email_1629685976005'),(108,5,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(109,5,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(110,5,'set_subs_to_expire','0','set_subs_to_expire','0'),(111,5,'subs_expire_time','90','subs_expire_time','90'),(118,6,'to','{wp:admin_email}','to','{wp:admin_email}'),(119,6,'subject','This is an email action.','subject','This is an email action.'),(120,6,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(121,6,'objectType','Action','objectType','Action'),(122,6,'objectDomain','actions','objectDomain','actions'),(123,6,'editActive','','editActive',''),(124,6,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(125,6,'payment_gateways','','payment_gateways',''),(126,6,'payment_total','','payment_total',''),(127,6,'tag','','tag',''),(128,6,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),(129,6,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),(130,6,'from_name','','from_name',''),(131,6,'from_address','','from_address',''),(132,6,'reply_to','','reply_to',''),(133,6,'email_format','html','email_format','html'),(134,6,'cc','','cc',''),(135,6,'bcc','','bcc',''),(136,6,'attach_csv','','attach_csv',''),(137,6,'email_message_plain','','email_message_plain',''),(149,7,'objectType','Action','objectType','Action'),(150,7,'objectDomain','actions','objectDomain','actions'),(151,7,'editActive','','editActive',''),(152,7,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(153,7,'payment_gateways','','payment_gateways',''),(154,7,'payment_total','','payment_total',''),(155,7,'tag','','tag',''),(156,7,'to','michaelbennett7@me.com','to','michaelbennett7@me.com'),(157,7,'email_subject','New message from {field:name}','email_subject','New message from {field:name}'),(158,7,'email_message','<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">{all_fields_table}</span></p><p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">-{field:name} ( )</span><br></p>','email_message','<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">{all_fields_table}</span></p><p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">-{field:name} ( )</span><br></p>'),(159,7,'from_name','','from_name',''),(160,7,'from_address','','from_address',''),(161,7,'reply_to','','reply_to',''),(162,7,'email_format','html','email_format','html'),(163,7,'cc','','cc',''),(164,7,'bcc','','bcc',''),(165,7,'attach_csv','0','attach_csv','0'),(166,7,'email_message_plain','','email_message_plain',''),(167,7,'drawerDisabled','','drawerDisabled',''),(180,8,'message','Thank you {field:name} for filling out my form!','message','Thank you {field:name} for filling out my form!'),(181,8,'objectType','Action','objectType','Action'),(182,8,'objectDomain','actions','objectDomain','actions'),(183,8,'editActive','','editActive',''),(184,8,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(185,8,'payment_gateways','','payment_gateways',''),(186,8,'payment_total','','payment_total',''),(187,8,'tag','','tag',''),(188,8,'to','{wp:admin_email}','to','{wp:admin_email}'),(189,8,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(190,8,'email_message','{fields_table}','email_message','{fields_table}'),(191,8,'from_name','','from_name',''),(192,8,'from_address','','from_address',''),(193,8,'reply_to','','reply_to',''),(194,8,'email_format','html','email_format','html'),(195,8,'cc','','cc',''),(196,8,'bcc','','bcc',''),(197,8,'attach_csv','','attach_csv',''),(198,8,'redirect_url','','redirect_url',''),(199,8,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to .</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to .</p>'),(200,8,'email_message_plain','','email_message_plain',''),(201,8,'drawerDisabled','','drawerDisabled',''); /*!40000 ALTER TABLE `wp_nf3_action_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_actions` -- DROP TABLE IF EXISTS `wp_nf3_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_actions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` longtext, `key` longtext, `type` longtext, `active` tinyint(1) DEFAULT '1', `parent_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT NULL, `label` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_actions` -- LOCK TABLES `wp_nf3_actions` WRITE; /*!40000 ALTER TABLE `wp_nf3_actions` DISABLE KEYS */; INSERT INTO `wp_nf3_actions` VALUES (1,'','','save',1,1,'2021-08-15 20:40:42','2021-08-15 20:40:42','Store Submission'),(2,'','','email',1,1,'2021-08-15 20:40:42','2021-08-15 20:40:42','Email Confirmation'),(3,'','','email',1,1,'2021-08-15 20:40:42','2021-08-15 20:40:42','Email Notification'),(4,'','','successmessage',1,1,'2021-08-15 20:40:42','2021-08-15 20:40:42','Success Message'),(5,'','','save',1,2,'2021-08-23 02:32:15',NULL,'Store Submission'),(6,'','','email',1,2,'2021-08-23 02:32:15',NULL,'Email Confirmation'),(7,'','','email',1,2,'2021-08-23 02:32:15',NULL,'Email Notification'),(8,'','','successmessage',1,2,'2021-08-23 02:32:15',NULL,'Success Message'); /*!40000 ALTER TABLE `wp_nf3_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_chunks` -- DROP TABLE IF EXISTS `wp_nf3_chunks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_chunks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) DEFAULT NULL, `value` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_chunks` -- LOCK TABLES `wp_nf3_chunks` WRITE; /*!40000 ALTER TABLE `wp_nf3_chunks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_nf3_chunks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_field_meta` -- DROP TABLE IF EXISTS `wp_nf3_field_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_field_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `key` longtext NOT NULL, `value` longtext, `meta_key` longtext, `meta_value` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=839 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_field_meta` -- LOCK TABLES `wp_nf3_field_meta` WRITE; /*!40000 ALTER TABLE `wp_nf3_field_meta` DISABLE KEYS */; INSERT INTO `wp_nf3_field_meta` VALUES (1,1,'label_pos','above','label_pos','above'),(2,1,'required','1','required','1'),(3,1,'order','1','order','1'),(4,1,'placeholder','','placeholder',''),(5,1,'default','','default',''),(6,1,'wrapper_class','','wrapper_class',''),(7,1,'element_class','','element_class',''),(8,1,'objectType','Field','objectType','Field'),(9,1,'objectDomain','fields','objectDomain','fields'),(10,1,'editActive','','editActive',''),(11,1,'container_class','','container_class',''),(12,1,'input_limit','','input_limit',''),(13,1,'input_limit_type','characters','input_limit_type','characters'),(14,1,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(15,1,'manual_key','','manual_key',''),(16,1,'disable_input','','disable_input',''),(17,1,'admin_label','','admin_label',''),(18,1,'help_text','','help_text',''),(19,1,'desc_text','','desc_text',''),(20,1,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(21,1,'mask','','mask',''),(22,1,'custom_mask','','custom_mask',''),(23,1,'wrap_styles_background-color','','wrap_styles_background-color',''),(24,1,'wrap_styles_border','','wrap_styles_border',''),(25,1,'wrap_styles_border-style','','wrap_styles_border-style',''),(26,1,'wrap_styles_border-color','','wrap_styles_border-color',''),(27,1,'wrap_styles_color','','wrap_styles_color',''),(28,1,'wrap_styles_height','','wrap_styles_height',''),(29,1,'wrap_styles_width','','wrap_styles_width',''),(30,1,'wrap_styles_font-size','','wrap_styles_font-size',''),(31,1,'wrap_styles_margin','','wrap_styles_margin',''),(32,1,'wrap_styles_padding','','wrap_styles_padding',''),(33,1,'wrap_styles_display','','wrap_styles_display',''),(34,1,'wrap_styles_float','','wrap_styles_float',''),(35,1,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(36,1,'wrap_styles_advanced','','wrap_styles_advanced',''),(37,1,'label_styles_background-color','','label_styles_background-color',''),(38,1,'label_styles_border','','label_styles_border',''),(39,1,'label_styles_border-style','','label_styles_border-style',''),(40,1,'label_styles_border-color','','label_styles_border-color',''),(41,1,'label_styles_color','','label_styles_color',''),(42,1,'label_styles_height','','label_styles_height',''),(43,1,'label_styles_width','','label_styles_width',''),(44,1,'label_styles_font-size','','label_styles_font-size',''),(45,1,'label_styles_margin','','label_styles_margin',''),(46,1,'label_styles_padding','','label_styles_padding',''),(47,1,'label_styles_display','','label_styles_display',''),(48,1,'label_styles_float','','label_styles_float',''),(49,1,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(50,1,'label_styles_advanced','','label_styles_advanced',''),(51,1,'element_styles_background-color','','element_styles_background-color',''),(52,1,'element_styles_border','','element_styles_border',''),(53,1,'element_styles_border-style','','element_styles_border-style',''),(54,1,'element_styles_border-color','','element_styles_border-color',''),(55,1,'element_styles_color','','element_styles_color',''),(56,1,'element_styles_height','','element_styles_height',''),(57,1,'element_styles_width','','element_styles_width',''),(58,1,'element_styles_font-size','','element_styles_font-size',''),(59,1,'element_styles_margin','','element_styles_margin',''),(60,1,'element_styles_padding','','element_styles_padding',''),(61,1,'element_styles_display','','element_styles_display',''),(62,1,'element_styles_float','','element_styles_float',''),(63,1,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(64,1,'element_styles_advanced','','element_styles_advanced',''),(65,1,'cellcid','c3277','cellcid','c3277'),(123,3,'label_pos','above','label_pos','above'),(124,3,'required','0','required','0'),(125,3,'order','5','order','5'),(126,3,'placeholder','','placeholder',''),(127,3,'default','','default',''),(128,3,'wrapper_class','','wrapper_class',''),(129,3,'element_class','','element_class',''),(130,3,'objectType','Field','objectType','Field'),(131,3,'objectDomain','fields','objectDomain','fields'),(132,3,'editActive','','editActive',''),(133,3,'container_class','','container_class',''),(134,3,'input_limit','','input_limit',''),(135,3,'input_limit_type','characters','input_limit_type','characters'),(136,3,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(137,3,'manual_key','','manual_key',''),(138,3,'disable_input','','disable_input',''),(139,3,'admin_label','','admin_label',''),(140,3,'help_text','','help_text',''),(141,3,'desc_text','','desc_text',''),(142,3,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(143,3,'textarea_rte','','textarea_rte',''),(144,3,'disable_rte_mobile','','disable_rte_mobile',''),(145,3,'textarea_media','','textarea_media',''),(146,3,'wrap_styles_background-color','','wrap_styles_background-color',''),(147,3,'wrap_styles_border','','wrap_styles_border',''),(148,3,'wrap_styles_border-style','','wrap_styles_border-style',''),(149,3,'wrap_styles_border-color','','wrap_styles_border-color',''),(150,3,'wrap_styles_color','','wrap_styles_color',''),(151,3,'wrap_styles_height','','wrap_styles_height',''),(152,3,'wrap_styles_width','','wrap_styles_width',''),(153,3,'wrap_styles_font-size','','wrap_styles_font-size',''),(154,3,'wrap_styles_margin','','wrap_styles_margin',''),(155,3,'wrap_styles_padding','','wrap_styles_padding',''),(156,3,'wrap_styles_display','','wrap_styles_display',''),(157,3,'wrap_styles_float','','wrap_styles_float',''),(158,3,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(159,3,'wrap_styles_advanced','','wrap_styles_advanced',''),(160,3,'label_styles_background-color','','label_styles_background-color',''),(161,3,'label_styles_border','','label_styles_border',''),(162,3,'label_styles_border-style','','label_styles_border-style',''),(163,3,'label_styles_border-color','','label_styles_border-color',''),(164,3,'label_styles_color','','label_styles_color',''),(165,3,'label_styles_height','','label_styles_height',''),(166,3,'label_styles_width','','label_styles_width',''),(167,3,'label_styles_font-size','','label_styles_font-size',''),(168,3,'label_styles_margin','','label_styles_margin',''),(169,3,'label_styles_padding','','label_styles_padding',''),(170,3,'label_styles_display','','label_styles_display',''),(171,3,'label_styles_float','','label_styles_float',''),(172,3,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(173,3,'label_styles_advanced','','label_styles_advanced',''),(174,3,'element_styles_background-color','','element_styles_background-color',''),(175,3,'element_styles_border','','element_styles_border',''),(176,3,'element_styles_border-style','','element_styles_border-style',''),(177,3,'element_styles_border-color','','element_styles_border-color',''),(178,3,'element_styles_color','','element_styles_color',''),(179,3,'element_styles_height','','element_styles_height',''),(180,3,'element_styles_width','','element_styles_width',''),(181,3,'element_styles_font-size','','element_styles_font-size',''),(182,3,'element_styles_margin','','element_styles_margin',''),(183,3,'element_styles_padding','','element_styles_padding',''),(184,3,'element_styles_display','','element_styles_display',''),(185,3,'element_styles_float','','element_styles_float',''),(186,3,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(187,3,'element_styles_advanced','','element_styles_advanced',''),(188,3,'cellcid','c3284','cellcid','c3284'),(189,4,'processing_label','Processing','processing_label','Processing'),(190,4,'order','6','order','6'),(191,4,'objectType','Field','objectType','Field'),(192,4,'objectDomain','fields','objectDomain','fields'),(193,4,'editActive','','editActive',''),(194,4,'container_class','','container_class',''),(195,4,'element_class','','element_class',''),(196,4,'wrap_styles_background-color','','wrap_styles_background-color',''),(197,4,'wrap_styles_border','','wrap_styles_border',''),(198,4,'wrap_styles_border-style','','wrap_styles_border-style',''),(199,4,'wrap_styles_border-color','','wrap_styles_border-color',''),(200,4,'wrap_styles_color','','wrap_styles_color',''),(201,4,'wrap_styles_height','','wrap_styles_height',''),(202,4,'wrap_styles_width','','wrap_styles_width',''),(203,4,'wrap_styles_font-size','','wrap_styles_font-size',''),(204,4,'wrap_styles_margin','','wrap_styles_margin',''),(205,4,'wrap_styles_padding','','wrap_styles_padding',''),(206,4,'wrap_styles_display','','wrap_styles_display',''),(207,4,'wrap_styles_float','','wrap_styles_float',''),(208,4,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(209,4,'wrap_styles_advanced','','wrap_styles_advanced',''),(210,4,'label_styles_background-color','','label_styles_background-color',''),(211,4,'label_styles_border','','label_styles_border',''),(212,4,'label_styles_border-style','','label_styles_border-style',''),(213,4,'label_styles_border-color','','label_styles_border-color',''),(214,4,'label_styles_color','','label_styles_color',''),(215,4,'label_styles_height','','label_styles_height',''),(216,4,'label_styles_width','','label_styles_width',''),(217,4,'label_styles_font-size','','label_styles_font-size',''),(218,4,'label_styles_margin','','label_styles_margin',''),(219,4,'label_styles_padding','','label_styles_padding',''),(220,4,'label_styles_display','','label_styles_display',''),(221,4,'label_styles_float','','label_styles_float',''),(222,4,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(223,4,'label_styles_advanced','','label_styles_advanced',''),(224,4,'element_styles_background-color','','element_styles_background-color',''),(225,4,'element_styles_border','','element_styles_border',''),(226,4,'element_styles_border-style','','element_styles_border-style',''),(227,4,'element_styles_border-color','','element_styles_border-color',''),(228,4,'element_styles_color','','element_styles_color',''),(229,4,'element_styles_height','','element_styles_height',''),(230,4,'element_styles_width','','element_styles_width',''),(231,4,'element_styles_font-size','','element_styles_font-size',''),(232,4,'element_styles_margin','','element_styles_margin',''),(233,4,'element_styles_padding','','element_styles_padding',''),(234,4,'element_styles_display','','element_styles_display',''),(235,4,'element_styles_float','','element_styles_float',''),(236,4,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(237,4,'element_styles_advanced','','element_styles_advanced',''),(238,4,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),(239,4,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(240,4,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(241,4,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(242,4,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),(243,4,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(244,4,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(245,4,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(246,4,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(247,4,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(248,4,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(249,4,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(250,4,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(251,4,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),(252,4,'cellcid','c3287','cellcid','c3287'),(253,1,'field_label','Name','field_label','Name'),(254,1,'field_key','name','field_key','name'),(257,3,'field_label','Message','field_label','Message'),(258,3,'field_key','message','field_key','message'),(259,4,'field_label','Submit','field_label','Submit'),(260,4,'field_key','submit','field_key','submit'),(261,1,'idAttribute','id','idAttribute','id'),(262,1,'label','Name','label','Name'),(263,1,'key','name','key','name'),(264,1,'type','textbox','type','textbox'),(265,1,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(266,1,'custom_name_attribute','','custom_name_attribute',''),(267,1,'personally_identifiable','','personally_identifiable',''),(268,1,'value','','value',''),(269,5,'editActive','','editActive',''),(270,5,'order','2','order','2'),(271,5,'idAttribute','id','idAttribute','id'),(272,5,'label','Phone','label','Phone'),(273,5,'type','phone','type','phone'),(274,5,'key','phone_1629672050494','key','phone_1629672050494'),(275,5,'label_pos','default','label_pos','default'),(276,5,'required','1','required','1'),(277,5,'default','','default',''),(278,5,'placeholder','','placeholder',''),(279,5,'container_class','','container_class',''),(280,5,'element_class','','element_class',''),(281,5,'input_limit','','input_limit',''),(282,5,'input_limit_type','characters','input_limit_type','characters'),(283,5,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(284,5,'manual_key','','manual_key',''),(285,5,'admin_label','','admin_label',''),(286,5,'help_text','','help_text',''),(287,5,'mask','','mask',''),(288,5,'custom_mask','','custom_mask',''),(289,5,'custom_name_attribute','phone','custom_name_attribute','phone'),(290,5,'personally_identifiable','1','personally_identifiable','1'),(291,5,'value','','value',''),(292,5,'drawerDisabled','','drawerDisabled',''),(293,6,'editActive','','editActive',''),(294,6,'order','3','order','3'),(295,6,'idAttribute','id','idAttribute','id'),(296,6,'label','Event Date','label','Event Date'),(297,6,'type','date','type','date'),(298,6,'key','event_date_1629672133075','key','event_date_1629672133075'),(299,6,'label_pos','default','label_pos','default'),(300,6,'required','','required',''),(301,6,'placeholder','','placeholder',''),(302,6,'container_class','','container_class',''),(303,6,'element_class','','element_class',''),(304,6,'manual_key','','manual_key',''),(305,6,'admin_label','','admin_label',''),(306,6,'help_text','','help_text',''),(307,6,'date_mode','date_only','date_mode','date_only'),(308,6,'date_format','default','date_format','default'),(309,6,'year_range_start','','year_range_start',''),(310,6,'year_range_end','','year_range_end',''),(311,6,'hours_24','0','hours_24','0'),(312,6,'minute_increment','5','minute_increment','5'),(313,7,'editActive','','editActive',''),(314,7,'order','4','order','4'),(315,7,'idAttribute','id','idAttribute','id'),(316,7,'label','Primary Wedding Colors','label','Primary Wedding Colors'),(317,7,'type','textbox','type','textbox'),(318,7,'key','primary_wedding_colors_1629672095987','key','primary_wedding_colors_1629672095987'),(319,7,'label_pos','default','label_pos','default'),(320,7,'required','','required',''),(321,7,'default','','default',''),(322,7,'placeholder','','placeholder',''),(323,7,'container_class','','container_class',''),(324,7,'element_class','','element_class',''),(325,7,'input_limit','','input_limit',''),(326,7,'input_limit_type','characters','input_limit_type','characters'),(327,7,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(328,7,'manual_key','','manual_key',''),(329,7,'admin_label','','admin_label',''),(330,7,'help_text','','help_text',''),(331,7,'mask','','mask',''),(332,7,'custom_mask','','custom_mask',''),(333,7,'custom_name_attribute','','custom_name_attribute',''),(334,7,'personally_identifiable','','personally_identifiable',''),(335,7,'value','','value',''),(336,7,'drawerDisabled','','drawerDisabled',''),(337,3,'idAttribute','id','idAttribute','id'),(338,3,'label','Message','label','Message'),(339,3,'key','message','key','message'),(340,3,'type','textarea','type','textarea'),(341,3,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(342,3,'value','','value',''),(343,4,'idAttribute','id','idAttribute','id'),(344,4,'label','Submit','label','Submit'),(345,4,'key','submit','key','submit'),(346,4,'type','submit','type','submit'),(347,4,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(348,8,'label_pos','above','label_pos','above'),(349,8,'required','1','required','1'),(350,8,'order','1','order','1'),(351,8,'placeholder','','placeholder',''),(352,8,'default','','default',''),(353,8,'wrapper_class','','wrapper_class',''),(354,8,'element_class','','element_class',''),(355,8,'objectType','Field','objectType','Field'),(356,8,'objectDomain','fields','objectDomain','fields'),(357,8,'editActive','','editActive',''),(358,8,'container_class','','container_class',''),(359,8,'input_limit','','input_limit',''),(360,8,'input_limit_type','characters','input_limit_type','characters'),(361,8,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(362,8,'manual_key','','manual_key',''),(363,8,'disable_input','','disable_input',''),(364,8,'admin_label','','admin_label',''),(365,8,'help_text','','help_text',''),(366,8,'desc_text','','desc_text',''),(367,8,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(368,8,'mask','','mask',''),(369,8,'custom_mask','','custom_mask',''),(370,8,'wrap_styles_background-color','','wrap_styles_background-color',''),(371,8,'wrap_styles_border','','wrap_styles_border',''),(372,8,'wrap_styles_border-style','','wrap_styles_border-style',''),(373,8,'wrap_styles_border-color','','wrap_styles_border-color',''),(374,8,'wrap_styles_color','','wrap_styles_color',''),(375,8,'wrap_styles_height','','wrap_styles_height',''),(376,8,'wrap_styles_width','','wrap_styles_width',''),(377,8,'wrap_styles_font-size','','wrap_styles_font-size',''),(378,8,'wrap_styles_margin','','wrap_styles_margin',''),(379,8,'wrap_styles_padding','','wrap_styles_padding',''),(380,8,'wrap_styles_display','','wrap_styles_display',''),(381,8,'wrap_styles_float','','wrap_styles_float',''),(382,8,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(383,8,'wrap_styles_advanced','','wrap_styles_advanced',''),(384,8,'label_styles_background-color','','label_styles_background-color',''),(385,8,'label_styles_border','','label_styles_border',''),(386,8,'label_styles_border-style','','label_styles_border-style',''),(387,8,'label_styles_border-color','','label_styles_border-color',''),(388,8,'label_styles_color','','label_styles_color',''),(389,8,'label_styles_height','','label_styles_height',''),(390,8,'label_styles_width','','label_styles_width',''),(391,8,'label_styles_font-size','','label_styles_font-size',''),(392,8,'label_styles_margin','','label_styles_margin',''),(393,8,'label_styles_padding','','label_styles_padding',''),(394,8,'label_styles_display','','label_styles_display',''),(395,8,'label_styles_float','','label_styles_float',''),(396,8,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(397,8,'label_styles_advanced','','label_styles_advanced',''),(398,8,'element_styles_background-color','','element_styles_background-color',''),(399,8,'element_styles_border','','element_styles_border',''),(400,8,'element_styles_border-style','','element_styles_border-style',''),(401,8,'element_styles_border-color','','element_styles_border-color',''),(402,8,'element_styles_color','','element_styles_color',''),(403,8,'element_styles_height','','element_styles_height',''),(404,8,'element_styles_width','','element_styles_width',''),(405,8,'element_styles_font-size','','element_styles_font-size',''),(406,8,'element_styles_margin','','element_styles_margin',''),(407,8,'element_styles_padding','','element_styles_padding',''),(408,8,'element_styles_display','','element_styles_display',''),(409,8,'element_styles_float','','element_styles_float',''),(410,8,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(411,8,'element_styles_advanced','','element_styles_advanced',''),(412,8,'cellcid','c3277','cellcid','c3277'),(413,8,'field_label','Name','field_label','Name'),(414,8,'field_key','name','field_key','name'),(415,8,'idAttribute','id','idAttribute','id'),(416,8,'label','Name','label','Name'),(417,8,'key','name','key','name'),(418,8,'type','textbox','type','textbox'),(419,8,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(420,8,'custom_name_attribute','','custom_name_attribute',''),(421,8,'personally_identifiable','','personally_identifiable',''),(422,8,'value','','value',''),(475,9,'label_pos','above','label_pos','above'),(476,9,'required','0','required','0'),(477,9,'order','3','order','3'),(478,9,'placeholder','','placeholder',''),(479,9,'default','','default',''),(480,9,'wrapper_class','','wrapper_class',''),(481,9,'element_class','','element_class',''),(482,9,'objectType','Field','objectType','Field'),(483,9,'objectDomain','fields','objectDomain','fields'),(484,9,'editActive','','editActive',''),(485,9,'container_class','','container_class',''),(486,9,'input_limit','','input_limit',''),(487,9,'input_limit_type','characters','input_limit_type','characters'),(488,9,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(489,9,'manual_key','','manual_key',''),(490,9,'disable_input','','disable_input',''),(491,9,'admin_label','','admin_label',''),(492,9,'help_text','','help_text',''),(493,9,'desc_text','','desc_text',''),(494,9,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(495,9,'textarea_rte','','textarea_rte',''),(496,9,'disable_rte_mobile','','disable_rte_mobile',''),(497,9,'textarea_media','','textarea_media',''),(498,9,'wrap_styles_background-color','','wrap_styles_background-color',''),(499,9,'wrap_styles_border','','wrap_styles_border',''),(500,9,'wrap_styles_border-style','','wrap_styles_border-style',''),(501,9,'wrap_styles_border-color','','wrap_styles_border-color',''),(502,9,'wrap_styles_color','','wrap_styles_color',''),(503,9,'wrap_styles_height','','wrap_styles_height',''),(504,9,'wrap_styles_width','','wrap_styles_width',''),(505,9,'wrap_styles_font-size','','wrap_styles_font-size',''),(506,9,'wrap_styles_margin','','wrap_styles_margin',''),(507,9,'wrap_styles_padding','','wrap_styles_padding',''),(508,9,'wrap_styles_display','','wrap_styles_display',''),(509,9,'wrap_styles_float','','wrap_styles_float',''),(510,9,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(511,9,'wrap_styles_advanced','','wrap_styles_advanced',''),(512,9,'label_styles_background-color','','label_styles_background-color',''),(513,9,'label_styles_border','','label_styles_border',''),(514,9,'label_styles_border-style','','label_styles_border-style',''),(515,9,'label_styles_border-color','','label_styles_border-color',''),(516,9,'label_styles_color','','label_styles_color',''),(517,9,'label_styles_height','','label_styles_height',''),(518,9,'label_styles_width','','label_styles_width',''),(519,9,'label_styles_font-size','','label_styles_font-size',''),(520,9,'label_styles_margin','','label_styles_margin',''),(521,9,'label_styles_padding','','label_styles_padding',''),(522,9,'label_styles_display','','label_styles_display',''),(523,9,'label_styles_float','','label_styles_float',''),(524,9,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(525,9,'label_styles_advanced','','label_styles_advanced',''),(526,9,'element_styles_background-color','','element_styles_background-color',''),(527,9,'element_styles_border','','element_styles_border',''),(528,9,'element_styles_border-style','','element_styles_border-style',''),(529,9,'element_styles_border-color','','element_styles_border-color',''),(530,9,'element_styles_color','','element_styles_color',''),(531,9,'element_styles_height','','element_styles_height',''),(532,9,'element_styles_width','','element_styles_width',''),(533,9,'element_styles_font-size','','element_styles_font-size',''),(534,9,'element_styles_margin','','element_styles_margin',''),(535,9,'element_styles_padding','','element_styles_padding',''),(536,9,'element_styles_display','','element_styles_display',''),(537,9,'element_styles_float','','element_styles_float',''),(538,9,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(539,9,'element_styles_advanced','','element_styles_advanced',''),(540,9,'cellcid','c3284','cellcid','c3284'),(541,9,'field_label','Message','field_label','Message'),(542,9,'field_key','message','field_key','message'),(543,9,'idAttribute','id','idAttribute','id'),(544,9,'label','Message','label','Message'),(545,9,'key','message','key','message'),(546,9,'type','textarea','type','textarea'),(547,9,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(548,9,'value','','value',''),(602,10,'processing_label','Processing','processing_label','Processing'),(603,10,'order','4','order','4'),(604,10,'objectType','Field','objectType','Field'),(605,10,'objectDomain','fields','objectDomain','fields'),(606,10,'editActive','','editActive',''),(607,10,'container_class','','container_class',''),(608,10,'element_class','','element_class',''),(609,10,'wrap_styles_background-color','','wrap_styles_background-color',''),(610,10,'wrap_styles_border','','wrap_styles_border',''),(611,10,'wrap_styles_border-style','','wrap_styles_border-style',''),(612,10,'wrap_styles_border-color','','wrap_styles_border-color',''),(613,10,'wrap_styles_color','','wrap_styles_color',''),(614,10,'wrap_styles_height','','wrap_styles_height',''),(615,10,'wrap_styles_width','','wrap_styles_width',''),(616,10,'wrap_styles_font-size','','wrap_styles_font-size',''),(617,10,'wrap_styles_margin','','wrap_styles_margin',''),(618,10,'wrap_styles_padding','','wrap_styles_padding',''),(619,10,'wrap_styles_display','','wrap_styles_display',''),(620,10,'wrap_styles_float','','wrap_styles_float',''),(621,10,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(622,10,'wrap_styles_advanced','','wrap_styles_advanced',''),(623,10,'label_styles_background-color','','label_styles_background-color',''),(624,10,'label_styles_border','','label_styles_border',''),(625,10,'label_styles_border-style','','label_styles_border-style',''),(626,10,'label_styles_border-color','','label_styles_border-color',''),(627,10,'label_styles_color','','label_styles_color',''),(628,10,'label_styles_height','','label_styles_height',''),(629,10,'label_styles_width','','label_styles_width',''),(630,10,'label_styles_font-size','','label_styles_font-size',''),(631,10,'label_styles_margin','','label_styles_margin',''),(632,10,'label_styles_padding','','label_styles_padding',''),(633,10,'label_styles_display','','label_styles_display',''),(634,10,'label_styles_float','','label_styles_float',''),(635,10,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(636,10,'label_styles_advanced','','label_styles_advanced',''),(637,10,'element_styles_background-color','','element_styles_background-color',''),(638,10,'element_styles_border','','element_styles_border',''),(639,10,'element_styles_border-style','','element_styles_border-style',''),(640,10,'element_styles_border-color','','element_styles_border-color',''),(641,10,'element_styles_color','','element_styles_color',''),(642,10,'element_styles_height','','element_styles_height',''),(643,10,'element_styles_width','','element_styles_width',''),(644,10,'element_styles_font-size','','element_styles_font-size',''),(645,10,'element_styles_margin','','element_styles_margin',''),(646,10,'element_styles_padding','','element_styles_padding',''),(647,10,'element_styles_display','','element_styles_display',''),(648,10,'element_styles_float','','element_styles_float',''),(649,10,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(650,10,'element_styles_advanced','','element_styles_advanced',''),(651,10,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),(652,10,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(653,10,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(654,10,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(655,10,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),(656,10,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(657,10,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(658,10,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(659,10,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(660,10,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(661,10,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(662,10,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(663,10,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(664,10,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),(665,10,'cellcid','c3287','cellcid','c3287'),(666,10,'field_label','Submit','field_label','Submit'),(667,10,'field_key','submit','field_key','submit'),(668,10,'idAttribute','id','idAttribute','id'),(669,10,'label','Submit','label','Submit'),(670,10,'key','submit','key','submit'),(671,10,'type','submit','type','submit'),(672,10,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(822,14,'editActive','','editActive',''),(823,14,'order','2','order','2'),(824,14,'idAttribute','id','idAttribute','id'),(825,14,'label','Email','label','Email'),(826,14,'type','email','type','email'),(827,14,'key','email_1629685976005','key','email_1629685976005'),(828,14,'label_pos','default','label_pos','default'),(829,14,'required','','required',''),(830,14,'default','','default',''),(831,14,'placeholder','','placeholder',''),(832,14,'container_class','','container_class',''),(833,14,'element_class','','element_class',''),(834,14,'admin_label','','admin_label',''),(835,14,'help_text','','help_text',''),(836,14,'custom_name_attribute','email','custom_name_attribute','email'),(837,14,'personally_identifiable','1','personally_identifiable','1'),(838,14,'value','','value',''); /*!40000 ALTER TABLE `wp_nf3_field_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_fields` -- DROP TABLE IF EXISTS `wp_nf3_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_fields` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` longtext, `key` longtext, `type` longtext, `parent_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT NULL, `field_label` longtext, `field_key` longtext, `order` int(11) DEFAULT NULL, `required` bit(1) DEFAULT NULL, `default_value` longtext, `label_pos` varchar(15) DEFAULT NULL, `personally_identifiable` bit(1) DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_fields` -- LOCK TABLES `wp_nf3_fields` WRITE; /*!40000 ALTER TABLE `wp_nf3_fields` DISABLE KEYS */; INSERT INTO `wp_nf3_fields` VALUES (1,'Name','name','textbox',1,'2021-08-22 22:43:48','2021-08-15 20:40:40','Name','name',1,'','','above','\0'),(3,'Message','message','textarea',1,'2021-08-22 22:43:48','2021-08-15 20:40:40','Message','message',5,'\0','','above','\0'),(4,'Submit','submit','submit',1,'2021-08-22 22:43:48','2021-08-15 20:40:40','Submit','submit',6,'\0','','','\0'),(5,'Phone','phone_1629672050494','phone',1,'2021-08-22 22:43:48',NULL,'Phone','phone_1629672050494',2,'','','default',''),(6,'Event Date','event_date_1629672133075','date',1,'2021-08-22 22:43:48',NULL,'Event Date','event_date_1629672133075',3,'\0','','default','\0'),(7,'Primary Wedding Colors','primary_wedding_colors_1629672095987','textbox',1,'2021-08-22 22:43:48',NULL,'Primary Wedding Colors','primary_wedding_colors_1629672095987',4,'\0','','default','\0'),(8,'Name','name','textbox',2,'2021-08-23 02:32:15',NULL,'Name','name',1,'','','above','\0'),(9,'Message','message','textarea',2,'2021-08-23 02:33:33',NULL,'Message','message',3,'\0','','above','\0'),(10,'Submit','submit','submit',2,'2021-08-23 02:33:33',NULL,'Submit','submit',4,'\0','','','\0'),(14,'Email','email_1629685976005','email',2,'2021-08-23 02:33:33',NULL,'Email','email_1629685976005',2,'\0','','default',''); /*!40000 ALTER TABLE `wp_nf3_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_form_meta` -- DROP TABLE IF EXISTS `wp_nf3_form_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_form_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `key` longtext NOT NULL, `value` longtext, `meta_key` longtext, `meta_value` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_form_meta` -- LOCK TABLES `wp_nf3_form_meta` WRITE; /*!40000 ALTER TABLE `wp_nf3_form_meta` DISABLE KEYS */; INSERT INTO `wp_nf3_form_meta` VALUES (1,1,'key','','key',''),(2,1,'created_at','2021-08-15 20:40:40','created_at','2021-08-15 20:40:40'),(3,1,'default_label_pos','above','default_label_pos','above'),(4,1,'conditions','a:0:{}','conditions','a:0:{}'),(5,1,'objectType','Form Setting','objectType','Form Setting'),(6,1,'editActive','1','editActive','1'),(7,1,'show_title','1','show_title','1'),(8,1,'clear_complete','1','clear_complete','1'),(9,1,'hide_complete','1','hide_complete','1'),(10,1,'wrapper_class','','wrapper_class',''),(11,1,'element_class','','element_class',''),(12,1,'add_submit','1','add_submit','1'),(13,1,'logged_in','','logged_in',''),(14,1,'not_logged_in_msg','','not_logged_in_msg',''),(15,1,'sub_limit_number','','sub_limit_number',''),(16,1,'sub_limit_msg','','sub_limit_msg',''),(17,1,'calculations','a:0:{}','calculations','a:0:{}'),(18,1,'formContentData','a:6:{i:0;s:4:\"name\";i:1;s:19:\"phone_1629672050494\";i:2;s:24:\"event_date_1629672133075\";i:3;s:36:\"primary_wedding_colors_1629672095987\";i:4;s:7:\"message\";i:5;s:6:\"submit\";}','formContentData','a:6:{i:0;s:4:\"name\";i:1;s:19:\"phone_1629672050494\";i:2;s:24:\"event_date_1629672133075\";i:3;s:36:\"primary_wedding_colors_1629672095987\";i:4;s:7:\"message\";i:5;s:6:\"submit\";}'),(19,1,'container_styles_background-color','','container_styles_background-color',''),(20,1,'container_styles_border','','container_styles_border',''),(21,1,'container_styles_border-style','','container_styles_border-style',''),(22,1,'container_styles_border-color','','container_styles_border-color',''),(23,1,'container_styles_color','','container_styles_color',''),(24,1,'container_styles_height','','container_styles_height',''),(25,1,'container_styles_width','','container_styles_width',''),(26,1,'container_styles_font-size','','container_styles_font-size',''),(27,1,'container_styles_margin','','container_styles_margin',''),(28,1,'container_styles_padding','','container_styles_padding',''),(29,1,'container_styles_display','','container_styles_display',''),(30,1,'container_styles_float','','container_styles_float',''),(31,1,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(32,1,'container_styles_advanced','','container_styles_advanced',''),(33,1,'title_styles_background-color','','title_styles_background-color',''),(34,1,'title_styles_border','','title_styles_border',''),(35,1,'title_styles_border-style','','title_styles_border-style',''),(36,1,'title_styles_border-color','','title_styles_border-color',''),(37,1,'title_styles_color','','title_styles_color',''),(38,1,'title_styles_height','','title_styles_height',''),(39,1,'title_styles_width','','title_styles_width',''),(40,1,'title_styles_font-size','','title_styles_font-size',''),(41,1,'title_styles_margin','','title_styles_margin',''),(42,1,'title_styles_padding','','title_styles_padding',''),(43,1,'title_styles_display','','title_styles_display',''),(44,1,'title_styles_float','','title_styles_float',''),(45,1,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(46,1,'title_styles_advanced','','title_styles_advanced',''),(47,1,'row_styles_background-color','','row_styles_background-color',''),(48,1,'row_styles_border','','row_styles_border',''),(49,1,'row_styles_border-style','','row_styles_border-style',''),(50,1,'row_styles_border-color','','row_styles_border-color',''),(51,1,'row_styles_color','','row_styles_color',''),(52,1,'row_styles_height','','row_styles_height',''),(53,1,'row_styles_width','','row_styles_width',''),(54,1,'row_styles_font-size','','row_styles_font-size',''),(55,1,'row_styles_margin','','row_styles_margin',''),(56,1,'row_styles_padding','','row_styles_padding',''),(57,1,'row_styles_display','','row_styles_display',''),(58,1,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(59,1,'row_styles_advanced','','row_styles_advanced',''),(60,1,'row-odd_styles_background-color','','row-odd_styles_background-color',''),(61,1,'row-odd_styles_border','','row-odd_styles_border',''),(62,1,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(63,1,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(64,1,'row-odd_styles_color','','row-odd_styles_color',''),(65,1,'row-odd_styles_height','','row-odd_styles_height',''),(66,1,'row-odd_styles_width','','row-odd_styles_width',''),(67,1,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(68,1,'row-odd_styles_margin','','row-odd_styles_margin',''),(69,1,'row-odd_styles_padding','','row-odd_styles_padding',''),(70,1,'row-odd_styles_display','','row-odd_styles_display',''),(71,1,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(72,1,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(73,1,'success-msg_styles_background-color','','success-msg_styles_background-color',''),(74,1,'success-msg_styles_border','','success-msg_styles_border',''),(75,1,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(76,1,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(77,1,'success-msg_styles_color','','success-msg_styles_color',''),(78,1,'success-msg_styles_height','','success-msg_styles_height',''),(79,1,'success-msg_styles_width','','success-msg_styles_width',''),(80,1,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(81,1,'success-msg_styles_margin','','success-msg_styles_margin',''),(82,1,'success-msg_styles_padding','','success-msg_styles_padding',''),(83,1,'success-msg_styles_display','','success-msg_styles_display',''),(84,1,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(85,1,'success-msg_styles_advanced','','success-msg_styles_advanced',''),(86,1,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(87,1,'error_msg_styles_border','','error_msg_styles_border',''),(88,1,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(89,1,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(90,1,'error_msg_styles_color','','error_msg_styles_color',''),(91,1,'error_msg_styles_height','','error_msg_styles_height',''),(92,1,'error_msg_styles_width','','error_msg_styles_width',''),(93,1,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(94,1,'error_msg_styles_margin','','error_msg_styles_margin',''),(95,1,'error_msg_styles_padding','','error_msg_styles_padding',''),(96,1,'error_msg_styles_display','','error_msg_styles_display',''),(97,1,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(98,1,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(99,1,'allow_public_link','0','allow_public_link','0'),(100,1,'embed_form','','embed_form',''),(101,1,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(102,1,'changeDateErrorMsg','','changeDateErrorMsg',''),(103,1,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(104,1,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(105,1,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(106,1,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(107,1,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(108,1,'validateRequiredField','','validateRequiredField',''),(109,1,'honeypotHoneypotError','','honeypotHoneypotError',''),(110,1,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(111,1,'currency','','currency',''),(112,1,'repeatable_fieldsets','','repeatable_fieldsets',''),(113,1,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(114,1,'drawerDisabled','','drawerDisabled',''),(115,2,'key','','key',''),(116,2,'created_at','2021-08-22 21:32:15','created_at','2021-08-22 21:32:15'),(117,2,'default_label_pos','above','default_label_pos','above'),(118,2,'conditions','a:0:{}','conditions','a:0:{}'),(119,2,'objectType','Form Setting','objectType','Form Setting'),(120,2,'editActive','1','editActive','1'),(121,2,'show_title','1','show_title','1'),(122,2,'clear_complete','1','clear_complete','1'),(123,2,'hide_complete','1','hide_complete','1'),(124,2,'wrapper_class','','wrapper_class',''),(125,2,'element_class','','element_class',''),(126,2,'add_submit','1','add_submit','1'),(127,2,'logged_in','','logged_in',''),(128,2,'not_logged_in_msg','','not_logged_in_msg',''),(129,2,'sub_limit_number','','sub_limit_number',''),(130,2,'sub_limit_msg','','sub_limit_msg',''),(131,2,'calculations','a:0:{}','calculations','a:0:{}'),(132,2,'formContentData','a:4:{i:0;s:4:\"name\";i:1;s:19:\"email_1629685976005\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}','formContentData','a:4:{i:0;s:4:\"name\";i:1;s:19:\"email_1629685976005\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}'),(133,2,'container_styles_background-color','','container_styles_background-color',''),(134,2,'container_styles_border','','container_styles_border',''),(135,2,'container_styles_border-style','','container_styles_border-style',''),(136,2,'container_styles_border-color','','container_styles_border-color',''),(137,2,'container_styles_color','','container_styles_color',''),(138,2,'container_styles_height','','container_styles_height',''),(139,2,'container_styles_width','','container_styles_width',''),(140,2,'container_styles_font-size','','container_styles_font-size',''),(141,2,'container_styles_margin','','container_styles_margin',''),(142,2,'container_styles_padding','','container_styles_padding',''),(143,2,'container_styles_display','','container_styles_display',''),(144,2,'container_styles_float','','container_styles_float',''),(145,2,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(146,2,'container_styles_advanced','','container_styles_advanced',''),(147,2,'title_styles_background-color','','title_styles_background-color',''),(148,2,'title_styles_border','','title_styles_border',''),(149,2,'title_styles_border-style','','title_styles_border-style',''),(150,2,'title_styles_border-color','','title_styles_border-color',''),(151,2,'title_styles_color','','title_styles_color',''),(152,2,'title_styles_height','','title_styles_height',''),(153,2,'title_styles_width','','title_styles_width',''),(154,2,'title_styles_font-size','','title_styles_font-size',''),(155,2,'title_styles_margin','','title_styles_margin',''),(156,2,'title_styles_padding','','title_styles_padding',''),(157,2,'title_styles_display','','title_styles_display',''),(158,2,'title_styles_float','','title_styles_float',''),(159,2,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(160,2,'title_styles_advanced','','title_styles_advanced',''),(161,2,'row_styles_background-color','','row_styles_background-color',''),(162,2,'row_styles_border','','row_styles_border',''),(163,2,'row_styles_border-style','','row_styles_border-style',''),(164,2,'row_styles_border-color','','row_styles_border-color',''),(165,2,'row_styles_color','','row_styles_color',''),(166,2,'row_styles_height','','row_styles_height',''),(167,2,'row_styles_width','','row_styles_width',''),(168,2,'row_styles_font-size','','row_styles_font-size',''),(169,2,'row_styles_margin','','row_styles_margin',''),(170,2,'row_styles_padding','','row_styles_padding',''),(171,2,'row_styles_display','','row_styles_display',''),(172,2,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(173,2,'row_styles_advanced','','row_styles_advanced',''),(174,2,'row-odd_styles_background-color','','row-odd_styles_background-color',''),(175,2,'row-odd_styles_border','','row-odd_styles_border',''),(176,2,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(177,2,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(178,2,'row-odd_styles_color','','row-odd_styles_color',''),(179,2,'row-odd_styles_height','','row-odd_styles_height',''),(180,2,'row-odd_styles_width','','row-odd_styles_width',''),(181,2,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(182,2,'row-odd_styles_margin','','row-odd_styles_margin',''),(183,2,'row-odd_styles_padding','','row-odd_styles_padding',''),(184,2,'row-odd_styles_display','','row-odd_styles_display',''),(185,2,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(186,2,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(187,2,'success-msg_styles_background-color','','success-msg_styles_background-color',''),(188,2,'success-msg_styles_border','','success-msg_styles_border',''),(189,2,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(190,2,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(191,2,'success-msg_styles_color','','success-msg_styles_color',''),(192,2,'success-msg_styles_height','','success-msg_styles_height',''),(193,2,'success-msg_styles_width','','success-msg_styles_width',''),(194,2,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(195,2,'success-msg_styles_margin','','success-msg_styles_margin',''),(196,2,'success-msg_styles_padding','','success-msg_styles_padding',''),(197,2,'success-msg_styles_display','','success-msg_styles_display',''),(198,2,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(199,2,'success-msg_styles_advanced','','success-msg_styles_advanced',''),(200,2,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(201,2,'error_msg_styles_border','','error_msg_styles_border',''),(202,2,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(203,2,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(204,2,'error_msg_styles_color','','error_msg_styles_color',''),(205,2,'error_msg_styles_height','','error_msg_styles_height',''),(206,2,'error_msg_styles_width','','error_msg_styles_width',''),(207,2,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(208,2,'error_msg_styles_margin','','error_msg_styles_margin',''),(209,2,'error_msg_styles_padding','','error_msg_styles_padding',''),(210,2,'error_msg_styles_display','','error_msg_styles_display',''),(211,2,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(212,2,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(213,2,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(214,2,'changeDateErrorMsg','','changeDateErrorMsg',''),(215,2,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(216,2,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(217,2,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(218,2,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(219,2,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(220,2,'validateRequiredField','','validateRequiredField',''),(221,2,'honeypotHoneypotError','','honeypotHoneypotError',''),(222,2,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(223,2,'currency','','currency',''),(224,2,'repeatable_fieldsets','','repeatable_fieldsets',''),(225,2,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(226,2,'drawerDisabled','','drawerDisabled',''),(242,2,'seq_num',NULL,'seq_num',NULL),(243,2,'allow_public_link','0','allow_public_link','0'),(244,2,'embed_form','','embed_form',''),(245,1,'_seq_num','8','_seq_num','8'),(246,2,'_seq_num','2','_seq_num','2'); /*!40000 ALTER TABLE `wp_nf3_form_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_forms` -- DROP TABLE IF EXISTS `wp_nf3_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_forms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` longtext, `key` longtext, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT NULL, `views` int(11) DEFAULT NULL, `subs` int(11) DEFAULT NULL, `form_title` longtext, `default_label_pos` varchar(15) DEFAULT NULL, `show_title` bit(1) DEFAULT NULL, `clear_complete` bit(1) DEFAULT NULL, `hide_complete` bit(1) DEFAULT NULL, `logged_in` bit(1) DEFAULT NULL, `seq_num` int(11) DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_forms` -- LOCK TABLES `wp_nf3_forms` WRITE; /*!40000 ALTER TABLE `wp_nf3_forms` DISABLE KEYS */; INSERT INTO `wp_nf3_forms` VALUES (1,'Tuxedo Rental',NULL,'2022-03-04 23:19:17','2021-08-15 20:40:40',NULL,NULL,'Tuxedo Rental','above','','','','\0',8),(2,'Contact Us',NULL,'2022-01-14 20:22:23',NULL,NULL,NULL,'Contact Us','above','','','','\0',2); /*!40000 ALTER TABLE `wp_nf3_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_object_meta` -- DROP TABLE IF EXISTS `wp_nf3_object_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_object_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `key` longtext NOT NULL, `value` longtext, `meta_key` longtext, `meta_value` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_object_meta` -- LOCK TABLES `wp_nf3_object_meta` WRITE; /*!40000 ALTER TABLE `wp_nf3_object_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_nf3_object_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_objects` -- DROP TABLE IF EXISTS `wp_nf3_objects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_objects` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` longtext, `title` longtext, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT NULL, `object_title` longtext, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_objects` -- LOCK TABLES `wp_nf3_objects` WRITE; /*!40000 ALTER TABLE `wp_nf3_objects` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_nf3_objects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_relationships` -- DROP TABLE IF EXISTS `wp_nf3_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_relationships` ( `id` int(11) NOT NULL AUTO_INCREMENT, `child_id` int(11) NOT NULL, `child_type` longtext NOT NULL, `parent_id` int(11) NOT NULL, `parent_type` longtext NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_relationships` -- LOCK TABLES `wp_nf3_relationships` WRITE; /*!40000 ALTER TABLE `wp_nf3_relationships` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_nf3_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_nf3_upgrades` -- DROP TABLE IF EXISTS `wp_nf3_upgrades`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_nf3_upgrades` ( `id` int(11) NOT NULL, `cache` longtext, `stage` int(11) NOT NULL DEFAULT '0', `maintenance` bit(1) DEFAULT b'0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_nf3_upgrades` -- LOCK TABLES `wp_nf3_upgrades` WRITE; /*!40000 ALTER TABLE `wp_nf3_upgrades` DISABLE KEYS */; INSERT INTO `wp_nf3_upgrades` VALUES (1,'a:7:{s:2:\"id\";i:1;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:6:{i:0;a:2:{s:8:\"settings\";a:73:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Phone\";s:4:\"type\";s:5:\"phone\";s:3:\"key\";s:19:\"phone_1629672050494\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";i:1;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:1:\"5\";}i:2;a:2:{s:8:\"settings\";a:22:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:10:\"Event Date\";s:4:\"type\";s:4:\"date\";s:3:\"key\";s:24:\"event_date_1629672133075\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"date_mode\";s:9:\"date_only\";s:11:\"date_format\";s:7:\"default\";s:16:\"year_range_start\";s:0:\"\";s:14:\"year_range_end\";s:0:\"\";s:8:\"hours_24\";i:0;s:16:\"minute_increment\";i:5;}s:2:\"id\";s:1:\"6\";}i:3;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:22:\"Primary Wedding Colors\";s:4:\"type\";s:7:\"textbox\";s:3:\"key\";s:36:\"primary_wedding_colors_1629672095987\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:1:\"7\";}i:4;a:2:{s:8:\"settings\";a:72:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:3;}i:5;a:2:{s:8:\"settings\";a:69:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:6;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";}s:2:\"id\";i:4;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-15 15:40:42\";s:5:\"label\";s:16:\"Store Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";i:0;s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-15 15:40:42\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:0:\"\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:2;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-15 15:40:42\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:22:\"michaelbennett7@me.com\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:396:\"<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">{all_fields_table}</span></p><p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">-{field:name} ( )</span><br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:3;}i:3;a:2:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-15 15:40:42\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:76:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to .</p>\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:4;}}s:8:\"settings\";a:115:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:13:\"Tuxedo Rental\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"conditions\";a:0:{}s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:6:{i:0;s:4:\"name\";i:1;s:19:\"phone_1629672050494\";i:2;s:24:\"event_date_1629672133075\";i:3;s:36:\"primary_wedding_colors_1629672095987\";i:4;s:7:\"message\";i:5;s:6:\"submit\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:14:\"drawerDisabled\";b:0;}s:14:\"deleted_fields\";a:2:{i:2;i:2;s:5:\"tmp-2\";s:5:\"tmp-2\";}s:15:\"deleted_actions\";a:0:{}}',4,'\0'),(2,'a:7:{s:2:\"id\";i:2;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:4:{i:0;a:2:{s:8:\"settings\";a:75:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:11:\"idAttribute\";s:2:\"id\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";s:11:\"field_label\";s:4:\"Name\";s:9:\"field_key\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:8;}i:1;a:2:{s:8:\"settings\";a:19:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:11:\"idAttribute\";s:2:\"id\";s:5:\"label\";s:5:\"Email\";s:4:\"type\";s:5:\"email\";s:3:\"key\";s:19:\"email_1629685976005\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";s:2:\"14\";}i:2;a:2:{s:8:\"settings\";a:74:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:11:\"idAttribute\";s:2:\"id\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"0\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:0:\"\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";s:11:\"field_label\";s:7:\"Message\";s:9:\"field_key\";s:7:\"message\";s:5:\"label\";s:7:\"Message\";s:3:\"key\";s:7:\"message\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";s:5:\"value\";s:0:\"\";}s:2:\"id\";i:9;}i:3;a:2:{s:8:\"settings\";a:71:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:11:\"idAttribute\";s:2:\"id\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";s:11:\"field_label\";s:6:\"Submit\";s:9:\"field_key\";s:6:\"submit\";s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:6:\"submit\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2021-08-15 20:40:40\";}s:2:\"id\";i:10;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-22 21:32:15\";s:5:\"label\";s:16:\"Store Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:19:\"email_1629685976005\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:5;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-22 21:32:15\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:6;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-22 21:32:15\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:22:\"michaelbennett7@me.com\";s:13:\"email_subject\";s:29:\"New message from {field:name}\";s:13:\"email_message\";s:396:\"<p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">{all_fields_table}</span></p><p><span style=\"font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;\">-{field:name} ( )</span><br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:7;}i:3;a:2:{s:8:\"settings\";a:27:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-08-22 21:32:15\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:47:\"Thank you {field:name} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:76:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to .</p>\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:8;}}s:8:\"settings\";a:115:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:10:\"Contact Us\";s:10:\"created_at\";s:19:\"2021-08-22 21:32:15\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:3:\"key\";s:0:\"\";s:10:\"conditions\";a:0:{}s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:4:{i:0;s:4:\"name\";i:1;s:19:\"email_1629685976005\";i:2;s:7:\"message\";i:3;s:6:\"submit\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:20:\"repeatable_fieldsets\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:14:\"drawerDisabled\";b:0;s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";}s:14:\"deleted_fields\";a:3:{i:11;i:11;i:12;i:12;i:13;i:13;}s:15:\"deleted_actions\";a:0:{}}',4,'\0'); /*!40000 ALTER TABLE `wp_nf3_upgrades` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=80914 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','https://michaelblakemenswear.com','yes'),(2,'home','https://michaelblakemenswear.com','yes'),(3,'blogname','Michael Blake Men's Wear','yes'),(4,'blogdescription','Custom clothing in the way that suits you','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ekow@esselwebdesign.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:240:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:29:\"^ninja-forms/([a-zA-Z0-9]+)/?\";s:36:\"index.php?nf_public_link=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:61:\"^\\.well-known\\/apple-developer-merchantid-domain-association$\";s:57:\"index.php?apple-developer-merchantid-domain-association=1\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:43:\"elementskit-content/(.+?)/wc-api(/(.*))?/?$\";s:60:\"index.php?elementskit_content=$matches[1]&wc-api=$matches[3]\";s:49:\"elementskit-content/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:60:\"elementskit-content/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:34:\"nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"nf_sub/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"nf_sub/([^/]+)/embed/?$\";s:39:\"index.php?nf_sub=$matches[1]&embed=true\";s:27:\"nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:35:\"nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:42:\"nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:32:\"nf_sub/([^/]+)/wc-api(/(.*))?/?$\";s:47:\"index.php?nf_sub=$matches[1]&wc-api=$matches[3]\";s:38:\"nf_sub/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"nf_sub/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"nf_sub/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:23:\"nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"nf_sub/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"elementor-hf/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"elementor-hf/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"elementor-hf/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"elementor-hf/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"elementor-hf/([^/]+)/embed/?$\";s:45:\"index.php?elementor-hf=$matches[1]&embed=true\";s:33:\"elementor-hf/([^/]+)/trackback/?$\";s:39:\"index.php?elementor-hf=$matches[1]&tb=1\";s:41:\"elementor-hf/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&paged=$matches[2]\";s:48:\"elementor-hf/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&cpage=$matches[2]\";s:38:\"elementor-hf/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?elementor-hf=$matches[1]&wc-api=$matches[3]\";s:44:\"elementor-hf/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"elementor-hf/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"elementor-hf/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?elementor-hf=$matches[1]&page=$matches[2]\";s:29:\"elementor-hf/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"elementor-hf/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"elementor-hf/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"elementor-hf/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=12&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:19:{i:0;s:23:\"elementor/elementor.php\";i:1;s:37:\"elementskit-lite/elementskit-lite.php\";i:2;s:55:\"elex-usps-shipping-method/usps-woocommerce-shipping.php\";i:3;s:51:\"google-listings-and-ads/google-listings-and-ads.php\";i:4;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:5;s:19:\"jetpack/jetpack.php\";i:6;s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";i:7;s:21:\"mailpoet/mailpoet.php\";i:8;s:27:\"ninja-forms/ninja-forms.php\";i:9;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:10;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:11;s:49:\"woo-usps-simple-shipping/USPS-simple-shipping.php\";i:12;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:13;s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";i:14;s:45:\"woocommerce-payments/woocommerce-payments.php\";i:15;s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";i:16;s:45:\"woocommerce-services/woocommerce-services.php\";i:17;s:27:\"woocommerce/woocommerce.php\";i:18;s:27:\"wp-super-cache/wp-cache.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','51917','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:4:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";s:45:\"woocommerce-services/woocommerce-services.php\";a:2:{i:0;s:17:\"WC_Connect_Loader\";i:1;s:16:\"plugin_uninstall\";}s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','12','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','287','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1644611521','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:121:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:28:\"mailpoet_access_plugin_admin\";b:1;s:24:\"mailpoet_manage_settings\";b:1;s:24:\"mailpoet_manage_features\";b:1;s:22:\"mailpoet_manage_emails\";b:1;s:27:\"mailpoet_manage_subscribers\";b:1;s:21:\"mailpoet_manage_forms\";b:1;s:24:\"mailpoet_manage_segments\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:28:\"mailpoet_access_plugin_admin\";b:1;s:22:\"mailpoet_manage_emails\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:29:{i:1646951863;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:1646952049;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:1646952072;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:1646952133;a:2:{s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1646952378;a:1:{s:11:\"wp_cache_gc\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1646953670;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1646954887;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:1646955122;a:1:{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;}}}i:1646956163;a:2:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"woocommerce_cleanup_rate_limits\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1646956800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1646965151;a:1:{s:23:\"rsssl_le_every_day_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:14:\"rsssl_le_daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1646966963;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1646987522;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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;}}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;}}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:1647016003;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:1647016037;a:1:{s:32:\"wc_connect_fetch_service_schemas\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1647016101;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1647030722;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:1647031081;a:2:{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;}}}i:1647031082;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:1647031240;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:1647031249;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1647031773;a:2:{s:33:\"woocommerce_cleanup_personal_data\";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:\"woocommerce_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:1647204042;a:1:{s:22:\"nf_marketing_feed_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1647204067;a:1:{s:26:\"nf_weekly_promotion_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1647289922;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:1647310751;a:1:{s:24:\"rsssl_le_every_week_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"rsssl_le_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1647809538;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}i:1648241423;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1629060630;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(128,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";s:7:\"version\";s:5:\"5.9.1\";s:9:\"timestamp\";i:1645562105;}','no'),(137,'wp_force_deactivated_plugins','a:0:{}','yes'),(161,'finished_updating_comment_type','1','yes'),(164,'recently_activated','a:0:{}','yes'),(165,'elementor_active_kit','5','yes'),(168,'hfe_plugin_is_activated','yes','yes'),(170,'ninja_forms_oauth_client_secret','ijeqRrBFXsia6308ebLE7KynDzsyN7ma47TBKUnP','yes'),(171,'ninja_forms_version','3.6.7','yes'),(172,'ninja_forms_db_version','1.4','no'),(173,'ninja_forms_required_updates','a:6:{s:19:\"CacheCollateActions\";s:19:\"2021-08-15 20:40:40\";s:17:\"CacheCollateForms\";s:19:\"2021-08-15 20:40:40\";s:18:\"CacheCollateFields\";s:19:\"2021-08-15 20:40:40\";s:19:\"CacheCollateObjects\";s:19:\"2021-08-15 20:40:40\";s:19:\"CacheCollateCleanup\";s:19:\"2021-08-15 20:40:40\";s:25:\"CacheFieldReconcilliation\";s:19:\"2021-08-15 20:40:40\";}','yes'),(174,'ninja_forms_settings','a:11:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:20:\"recaptcha_site_key_3\";s:0:\"\";s:22:\"recaptcha_secret_key_3\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:16:\"builder_dev_mode\";i:0;s:18:\"opinionated_styles\";s:5:\"light\";}','yes'),(175,'ninja_forms_zuul','87','no'),(177,'elementor_version','3.4.4','yes'),(178,'elementor_install_history','a:4:{s:5:\"3.3.1\";i:1629060041;s:5:\"3.4.2\";i:1629750844;s:5:\"3.4.3\";i:1630315416;s:5:\"3.4.4\";i:1631565474;}','yes'),(180,'ninja_forms_addons_feed','[{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Build dynamic forms that can change as a user fills out the form. Show and hide fields. Send certain email, don\'t send others. Redirect to one of many pages. The possibilities are endless!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic+Docs\",\"version\":\"3.1\",\"categories\":[{\"name\":\"Look & Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms+Docs\",\"version\":\"3.0.26\",\"categories\":[{\"name\":\"Look & Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Upload files to WordPress, Google Drive, Dropbox, or Amazon S3. Upload documents, images, media, and more. Easily control file type and size. Add an upload field to any form!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads+Docs\",\"version\":\"3.3.13\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Drag and drop fields into columns and rows. Resize fields. Add backgrounds, adjust borders, and more. Design gorgeous forms without being a designer!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Look & Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required. Link to lists and interest groups!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp+Docs\",\"version\":\"3.3.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 12+ analytics fields including UTM values, URL referrer, geo data, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM+Docs\",\"version\":\"3.5.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM+Docs\",\"version\":\"3.4.2\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Set up any WordPress form to accept credit card payments or donations through Stripe. Base totals on a fixed amount, user entered amount, or a calculated total!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Generate a PDF of any WordPress form submission. Export any submission as a PDF, or attach it to an email and send a copy to whoever needs one!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission+Docs\",\"version\":\"3.1.7\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 1,500 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier+Docs\",\"version\":\"3.0.8\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM+Docs\",\"version\":\"3.3.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach+Docs\",\"version\":\"3.1.5\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Export any form\'s submissions as a Microsoft Excel spreadsheet. Choose a date range, the fields you want to include, and export to Excel! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export+Docs\",\"version\":\"3.3.3\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Formstack Documents\",\"image\":\"assets\\/img\\/add-ons\\/webmerge.png\",\"content\":\"Create specifically formatted templates from an uploaded PDF or Word document, then auto-fill them from any WordPress form submission!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents\",\"plugin\":\"ninja-forms-webmerge\\/ninja-forms-webmerge.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Allow your users to register, login, and manage their own profiles on your website. Customizable template forms for each, or design your own!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress+Docs\",\"version\":\"3.0.25\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"PipelineDeals CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with PipelineDeals CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PipelineDeals+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PipelineDeals+CRM+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Highrise CRM\",\"image\":\"assets\\/img\\/add-ons\\/highrise-crm.png\",\"content\":\"Get more out of the functional simplicity of Highrise CRM with forms that can be designed from the ground up to maximize conversion. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/highrise-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Highrise+CRM\",\"plugin\":\"ninja-forms-highrise-crm\\/ninja-forms-highrise-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/highrise-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Highrise+CRM+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"ConvertKit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your ConvertKit account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]}]','no'),(183,'_hfe_db_version','1.6.9','yes'),(184,'action_scheduler_hybrid_store_demarkation','6','yes'),(185,'schema-ActionScheduler_StoreSchema','6.0.1641933926','yes'),(186,'schema-ActionScheduler_LoggerSchema','3.0.1634072886','yes'),(189,'woocommerce_schema_version','430','yes'),(190,'woocommerce_store_address','402 Edgewood Dr','yes'),(191,'woocommerce_store_address_2','','yes'),(192,'woocommerce_store_city','Maumelle','yes'),(193,'woocommerce_default_country','US:AR','yes'),(194,'woocommerce_store_postcode','72113','yes'),(195,'woocommerce_allowed_countries','specific','yes'),(196,'woocommerce_all_except_countries','a:0:{}','yes'),(197,'woocommerce_specific_allowed_countries','a:1:{i:0;s:2:\"US\";}','yes'),(198,'woocommerce_ship_to_countries','','yes'),(199,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(200,'woocommerce_default_customer_address','base','yes'),(201,'woocommerce_calc_taxes','no','yes'),(202,'woocommerce_enable_coupons','yes','yes'),(203,'woocommerce_calc_discounts_sequentially','no','no'),(204,'woocommerce_currency','USD','yes'),(205,'woocommerce_currency_pos','left','yes'),(206,'woocommerce_price_thousand_sep',',','yes'),(207,'woocommerce_price_decimal_sep','.','yes'),(208,'woocommerce_price_num_decimals','2','yes'),(209,'woocommerce_shop_page_id','7','yes'),(210,'woocommerce_cart_redirect_after_add','no','yes'),(211,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(212,'woocommerce_placeholder_image','6','yes'),(213,'woocommerce_weight_unit','kg','yes'),(214,'woocommerce_dimension_unit','cm','yes'),(215,'woocommerce_enable_reviews','yes','yes'),(216,'woocommerce_review_rating_verification_label','yes','no'),(217,'woocommerce_review_rating_verification_required','no','no'),(218,'woocommerce_enable_review_rating','yes','yes'),(219,'woocommerce_review_rating_required','yes','no'),(220,'woocommerce_manage_stock','yes','yes'),(221,'woocommerce_hold_stock_minutes','60','no'),(222,'woocommerce_notify_low_stock','yes','no'),(223,'woocommerce_notify_no_stock','yes','no'),(224,'woocommerce_stock_email_recipient','ekow@esselwebdesign.com','no'),(225,'woocommerce_notify_low_stock_amount','2','no'),(226,'woocommerce_notify_no_stock_amount','0','yes'),(227,'woocommerce_hide_out_of_stock_items','no','yes'),(228,'woocommerce_stock_format','','yes'),(229,'woocommerce_file_download_method','force','no'),(230,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(231,'woocommerce_downloads_require_login','no','no'),(232,'woocommerce_downloads_grant_access_after_payment','yes','no'),(233,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(234,'woocommerce_prices_include_tax','no','yes'),(235,'woocommerce_tax_based_on','shipping','yes'),(236,'woocommerce_shipping_tax_class','inherit','yes'),(237,'woocommerce_tax_round_at_subtotal','no','yes'),(238,'woocommerce_tax_classes','','yes'),(239,'woocommerce_tax_display_shop','excl','yes'),(240,'woocommerce_tax_display_cart','excl','yes'),(241,'woocommerce_price_display_suffix','','yes'),(242,'woocommerce_tax_total_display','itemized','no'),(243,'woocommerce_enable_shipping_calc','yes','no'),(244,'woocommerce_shipping_cost_requires_address','no','yes'),(245,'woocommerce_ship_to_destination','billing','no'),(246,'woocommerce_shipping_debug_mode','no','yes'),(247,'woocommerce_enable_guest_checkout','yes','no'),(248,'woocommerce_enable_checkout_login_reminder','no','no'),(249,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(250,'woocommerce_enable_myaccount_registration','no','no'),(251,'woocommerce_registration_generate_username','yes','no'),(252,'woocommerce_registration_generate_password','yes','no'),(253,'woocommerce_erasure_request_removes_order_data','no','no'),(254,'woocommerce_erasure_request_removes_download_data','no','no'),(255,'woocommerce_allow_bulk_remove_personal_data','no','no'),(256,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(257,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(258,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(259,'woocommerce_trash_pending_orders','','no'),(260,'woocommerce_trash_failed_orders','','no'),(261,'woocommerce_trash_cancelled_orders','','no'),(262,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(263,'woocommerce_email_from_name','Michael Blake Men's Wear','no'),(264,'woocommerce_email_from_address','ekow@esselwebdesign.com','no'),(265,'woocommerce_email_header_image','','no'),(266,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','no'),(267,'woocommerce_email_base_color','#96588a','no'),(268,'woocommerce_email_background_color','#f7f7f7','no'),(269,'woocommerce_email_body_background_color','#ffffff','no'),(270,'woocommerce_email_text_color','#3c3c3c','no'),(271,'woocommerce_merchant_email_notifications','no','no'),(272,'woocommerce_cart_page_id','8','no'),(273,'woocommerce_checkout_page_id','9','no'),(274,'woocommerce_myaccount_page_id','10','no'),(275,'woocommerce_terms_page_id','','no'),(276,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(277,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(278,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(279,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(280,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(281,'woocommerce_myaccount_orders_endpoint','orders','yes'),(282,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(283,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(284,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(285,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(286,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(287,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(288,'woocommerce_logout_endpoint','customer-logout','yes'),(289,'woocommerce_api_enabled','no','yes'),(290,'woocommerce_allow_tracking','no','no'),(291,'woocommerce_show_marketplace_suggestions','yes','no'),(292,'woocommerce_single_image_width','600','yes'),(293,'woocommerce_thumbnail_image_width','300','yes'),(294,'woocommerce_checkout_highlight_required_fields','yes','yes'),(295,'woocommerce_demo_store','no','no'),(296,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(297,'current_theme_supports_woocommerce','yes','yes'),(298,'woocommerce_queue_flush_rewrite_rules','no','yes'),(301,'default_product_cat','15','yes'),(304,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:23:\"ekow@esselwebdesign.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),(305,'woocommerce_version','6.3.1','yes'),(306,'woocommerce_db_version','5.9.0','yes'),(307,'woocommerce_inbox_variant_assignment','10','yes'),(311,'_transient_jetpack_autoloader_plugin_paths','a:4:{i:0;s:41:\"{{WP_PLUGIN_DIR}}/google-listings-and-ads\";i:1;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";i:2;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";i:3;s:38:\"{{WP_PLUGIN_DIR}}/woocommerce-payments\";}','yes'),(312,'action_scheduler_lock_async-request-runner','1646950130','yes'),(313,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:14:\"template_files\";}','yes'),(314,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"DVGJyH8kIADKrtv6HzTkiYoteEzvcar2\";}','yes'),(315,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(316,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(317,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(318,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(319,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(320,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(323,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(324,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(325,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(326,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(327,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(328,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(332,'woocommerce_admin_install_timestamp','1629060049','yes'),(333,'wc_remote_inbox_notifications_wca_updated','','no'),(334,'wc_remote_inbox_notifications_specs','a:30:{s:27:\"stripe_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"stripe_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:380:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"stripe_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}s:27:\"square_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"square_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:393:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"square_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}}}}s:26:\"wcpay_applepay_holiday2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"wcpay_applepay_holiday2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Boost sales this holiday season with Apple Pay!\";s:7:\"content\";s:338:\"Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"wcpay_applepay_holiday2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Accept Apple Pay\";}}s:3:\"url\";s:34:\"https://woocommerce.com/apple-pay/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-08 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-26 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:259:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:45:\"https://woocommerce.com/woocommerce-shipping/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:31:\"https://woocommerce.com/mobile/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:736:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons§ion=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:5:\"rules\";a:0:{}}s:30:\"wcpay-promo-2021-6-incentive-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-1\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br/><br/>\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n \";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"get-woo-commerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"1\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"3\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"5\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"7\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"9\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"11\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:30:\"wcpay-promo-2021-6-incentive-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-2\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br/><br/>\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n \";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"get-woocommerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"2\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"4\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"6\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"8\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"10\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"12\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:440:\"Heads up! There\'s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:513:\"We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br/><br/>Start using our latest PayPal today to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:38:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"We\'re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:134:\"We\'d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}}','no'),(335,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','no'),(336,'ninja-forms-views-secret','rVLy6zszWxrFLqtYzeDBzotFUrxMiYNPI5QeOVTN','yes'),(340,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(341,'ninja_forms_needs_updates','0','yes'),(342,'wc_blocks_db_schema_version','260','yes'),(345,'elementskit-lite_install_date','2021-08-15 08:40:51','yes'),(346,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:3:{s:5:\"start\";s:9:\"8/22/2021\";s:3:\"int\";i:7;s:9:\"dismissed\";i:1;}}','yes'),(347,'bsf_analytics_installed_time','1629060051','no'),(348,'_elementor_installed_time','1629060051','yes'),(349,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:13:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:14:\"Online Service\";i:7;s:7:\"Product\";i:8;s:11:\"Real Estate\";i:9;s:18:\"Social Involvement\";i:10;s:14:\"Thank You Page\";i:11;s:6:\"Travel\";i:12;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:735:{i:0;a:16:{s:4:\"tmpl\";i:768;s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:16:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:16:{s:4:\"tmpl\";i:773;s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:16:{s:4:\"tmpl\";i:776;s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:16:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:16:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:16:{s:4:\"tmpl\";i:782;s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:16:{s:4:\"tmpl\";i:783;s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:16:{s:4:\"tmpl\";i:787;s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:16:{s:4:\"tmpl\";i:788;s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:16:{s:4:\"tmpl\";i:790;s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:16:{s:4:\"tmpl\";i:791;s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:16:{s:4:\"tmpl\";i:793;s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:16:{s:4:\"tmpl\";i:794;s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:16:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:16:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:16:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:16:{s:4:\"tmpl\";i:799;s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:16:{s:4:\"tmpl\";i:800;s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:16:{s:4:\"tmpl\";i:802;s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:16:{s:4:\"tmpl\";i:804;s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:16:{s:4:\"tmpl\";i:805;s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:16:{s:4:\"tmpl\";i:807;s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:16:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:16:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:16:{s:4:\"tmpl\";i:812;s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:16:{s:4:\"tmpl\";i:814;s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:16:{s:4:\"tmpl\";i:815;s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:16:{s:4:\"tmpl\";i:817;s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:16:{s:4:\"tmpl\";i:818;s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:16:{s:4:\"tmpl\";i:819;s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:16:{s:4:\"tmpl\";i:820;s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:16:{s:4:\"tmpl\";i:821;s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:16:{s:4:\"tmpl\";i:822;s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:16:{s:4:\"tmpl\";i:824;s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:16:{s:4:\"tmpl\";i:827;s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:16:{s:4:\"tmpl\";i:828;s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:16:{s:4:\"tmpl\";i:830;s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:16:{s:4:\"tmpl\";i:835;s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:16:{s:4:\"tmpl\";i:836;s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:16:{s:4:\"tmpl\";i:854;s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:16:{s:4:\"tmpl\";i:857;s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:16:{s:4:\"tmpl\";i:858;s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:16:{s:4:\"tmpl\";i:861;s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine’s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:16:{s:4:\"tmpl\";i:862;s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine’s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:16:{s:4:\"tmpl\";i:863;s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine’s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:16:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:16:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:16:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:16:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:16:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:16:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:16:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:16:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:16:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:16:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:16:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:16:{s:4:\"tmpl\";i:719;s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:16:{s:4:\"tmpl\";i:720;s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:16:{s:4:\"tmpl\";i:721;s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:16:{s:4:\"tmpl\";i:724;s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:16:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:16:{s:4:\"tmpl\";i:727;s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:16:{s:4:\"tmpl\";i:728;s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:16:{s:4:\"tmpl\";i:730;s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:16:{s:4:\"tmpl\";i:733;s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:16:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design – Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/interior-design-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:16:{s:4:\"tmpl\";i:735;s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:16:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:16:{s:4:\"tmpl\";i:736;s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:16:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:16:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:72;a:16:{s:4:\"tmpl\";i:738;s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:16:{s:4:\"tmpl\";i:742;s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:16:{s:4:\"tmpl\";i:743;s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:16:{s:4:\"tmpl\";i:744;s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:16:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:16:{s:4:\"tmpl\";i:752;s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:16:{s:4:\"tmpl\";i:753;s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:16:{s:4:\"tmpl\";i:754;s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:16:{s:4:\"tmpl\";i:757;s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:16:{s:4:\"tmpl\";i:759;s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:16:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:16:{s:4:\"tmpl\";i:760;s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:16:{s:4:\"tmpl\";i:761;s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:16:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:16:{s:4:\"tmpl\";i:763;s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:16:{s:4:\"tmpl\";i:766;s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:16:{s:4:\"tmpl\";i:767;s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:16:{s:4:\"tmpl\";i:831;s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:16:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:16:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:16:{s:4:\"tmpl\";i:718;s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:16:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photographer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"project\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:94;a:16:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:16:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture – Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:96;a:16:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant – About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:97;a:16:{s:4:\"tmpl\";i:842;s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:16:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:16:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:16:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:101;a:16:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/law-firm-services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:102;a:16:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:16:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:104;a:16:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer – Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photographer-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Gallery\",\"Photography\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:105;a:16:{s:4:\"tmpl\";i:748;s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:16:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:16:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency – Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:108;a:16:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/architecture-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"creative portfolio\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:109;a:16:{s:4:\"tmpl\";i:810;s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:16:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:16:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption – Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:112;a:16:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography – Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:113;a:16:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:16:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise & Fitness Equipment – eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"online shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:115;a:16:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer – Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/3d-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"creative portfolio\",\"Design\",\"Designer\",\"portfolio\",\"Project\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:16:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:16:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner – Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:118;a:16:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company – About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/business-consulting-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:16:{s:4:\"tmpl\";i:834;s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:16:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:16:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation – Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"interior design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:122;a:16:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/conference-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:37:\"[\"Conference\",\"Contact\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:16:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events – Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:124;a:16:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction – Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/construction-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:16:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:16:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:127;a:16:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses – Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:128;a:16:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact – Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/contact-plants-store/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:16:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop – eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"online shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:130;a:16:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency – About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:16:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:132;a:16:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace – Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:133;a:16:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care – Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dental-care-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:16:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:135;a:16:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening – Health & Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:136;a:16:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"medical\",\"Online\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:16:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:138;a:16:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:139;a:16:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management – Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:140;a:16:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition – Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/exhibition-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"creative portfolio\",\"Exhibition\",\"Gallery\",\"portfolio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:16:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:142;a:16:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:143;a:16:{s:4:\"tmpl\";i:797;s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:16:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones – eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:16:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/hotel-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Contact\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:16:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:147;a:16:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference – Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:148;a:16:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company – Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/insurance-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:16:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:150;a:16:{s:4:\"tmpl\";i:779;s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:16:{s:4:\"tmpl\";i:811;s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:16:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course – eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:16:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:154;a:16:{s:4:\"tmpl\";i:846;s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:16:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:16:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer – Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/interior-designer-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:16:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:158;a:16:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:16:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training – Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/online-training-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:16:{s:4:\"tmpl\";i:749;s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:16:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:162;a:16:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash – Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:16:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing & Moving Company – Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/packing-moving-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"moving\",\"Storge\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:16:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:16:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:16:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/restaurant-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:46:\"[\"Contact\",\"Food\",\"form\",\"Google Maps\",\"Info\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:16:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:168;a:16:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker – Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:16:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa & Beauty – Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/spa-beauty-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:16:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:16:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:16:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency – Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/travel-agency-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:16:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:174;a:16:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:175;a:16:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor – Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:16:{s:4:\"tmpl\";i:717;s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:16:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger – Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:16:{s:4:\"tmpl\";i:778;s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:16:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:180;a:16:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach – Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:16:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:16:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:183;a:16:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:16:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:16:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale – eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:16:{s:4:\"tmpl\";i:762;s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:16:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:16:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer – Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:16:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:16:{s:4:\"tmpl\";i:746;s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:16:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management – Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:16:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:16:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:16:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:16:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center – Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:196;a:16:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:16:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon – Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:16:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:16:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:16:{s:4:\"tmpl\";i:843;s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:16:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon – Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:16:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course – Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:16:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:16:{s:4:\"tmpl\";i:847;s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:16:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon – Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:16:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian – Health & Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:16:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:16:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon – Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:16:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef – Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:16:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:16:{s:4:\"tmpl\";i:813;s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:16:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:16:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course – Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:16:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:16:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:16:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant – Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:16:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:16:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:16:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project – Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:16:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop – 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:16:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:16:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog & Cat Food Delivery – Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:16:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop – Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:16:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:16:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:16:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:16:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio – Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:16:{s:4:\"tmpl\";i:833;s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:16:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course – Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:230;a:16:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop – Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:16:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio – Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:16:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor – Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:233;a:16:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop – Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:16:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:16:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:16:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery – Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:16:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:16:{s:4:\"tmpl\";i:825;s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:16:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:16:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar – Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:16:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:16:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:16:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer – Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:16:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:16:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:16:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:16:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:16:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:16:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:16:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:16:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale – eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:16:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:16:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:16:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:16:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:16:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:16:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:16:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:16:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:16:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:16:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:16:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:16:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service – Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:16:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:265;a:16:{s:4:\"tmpl\";i:758;s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:16:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:16:{s:4:\"tmpl\";i:798;s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:16:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:16:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:16:{s:4:\"tmpl\";i:755;s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:16:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:16:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:16:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:16:{s:4:\"tmpl\";i:764;s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:16:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:16:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:16:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:16:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic – Health & Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:16:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:16:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:16:{s:4:\"tmpl\";i:789;s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:16:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:16:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:16:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:16:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:16:{s:4:\"tmpl\";i:723;s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:16:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:288;a:16:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate – News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:16:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:16:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:16:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:16:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:16:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:16:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant – Chef’s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:16:{s:4:\"tmpl\";i:840;s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:16:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:16:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:298;a:16:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant – Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:16:{s:4:\"tmpl\";i:832;s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:16:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:16:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact 16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:302;a:16:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:16:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children’s Optometrist – Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:16:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:305;a:16:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:16:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:16:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:16:{s:4:\"tmpl\";i:747;s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:16:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant – Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:16:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:16:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:312;a:16:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant – Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:16:{s:4:\"tmpl\";i:765;s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:16:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant – Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:16:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:16:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:16:{s:4:\"tmpl\";i:844;s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:16:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:16:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:16:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:16:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:16:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:16:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop – Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:16:{s:4:\"tmpl\";i:849;s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:16:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:326;a:16:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:16:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:16:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:16:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency – Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:16:{s:4:\"tmpl\";i:739;s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:16:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:16:{s:4:\"tmpl\";i:816;s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:16:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page – Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:16:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:16:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:16:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:16:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page – Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:16:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:16:{s:4:\"tmpl\";i:806;s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:16:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product – eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:16:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:342;a:16:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course – Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:16:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym – App Service – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:16:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:345;a:16:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:16:{s:4:\"tmpl\";i:751;s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:16:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale – eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:348;a:16:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:349;a:16:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:16:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion – eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:16:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:16:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:16:{s:4:\"tmpl\";i:729;s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:16:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale – eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:16:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:16:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design – Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:16:{s:4:\"tmpl\";i:725;s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:16:{s:4:\"tmpl\";i:838;s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:16:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef – Thank You Page – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:16:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:16:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:16:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course – Thank You Page – Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:16:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:16:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:16:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:16:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:16:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:16:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography – Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:16:{s:4:\"tmpl\";i:745;s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:16:{s:4:\"tmpl\";i:850;s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:16:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:16:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography – Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:16:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:16:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography – Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:16:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:376;a:16:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography – Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:16:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:16:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography – Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:16:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:16:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography – Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:16:{s:4:\"tmpl\";i:839;s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:16:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:383;a:16:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography – Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:16:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:16:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography – Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:16:{s:4:\"tmpl\";i:750;s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:16:{s:4:\"tmpl\";i:852;s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:16:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:389;a:16:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography – B&W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:16:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:391;a:16:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography – Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:16:{s:4:\"tmpl\";i:741;s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:16:{s:4:\"tmpl\";i:848;s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:16:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:395;a:16:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:16:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:16:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:16:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:16:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:16:{s:4:\"tmpl\";i:823;s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:16:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:402;a:16:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel – Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:16:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:404;a:16:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel – Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:16:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:16:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:16:{s:4:\"tmpl\";i:756;s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:16:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:16:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel – FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:16:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel – Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:16:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:16:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:16:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio – Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:16:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:16:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:16:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio – Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:16:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:16:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:16:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:16:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:16:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:422;a:16:{s:4:\"tmpl\";i:714;s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:16:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:16:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:425;a:16:{s:4:\"tmpl\";i:734;s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:16:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:16:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:16:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:429;a:16:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm – Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:16:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:431;a:16:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:16:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:433;a:16:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym – Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:16:{s:4:\"tmpl\";i:774;s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:16:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:16:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:16:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm – Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:16:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:16:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:16:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:16:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm – Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:16:{s:4:\"tmpl\";i:726;s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:16:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency – Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:16:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:16:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:16:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym – Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:16:{s:4:\"tmpl\";i:737;s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:16:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:16:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:16:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:16:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:16:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:16:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:454;a:16:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency – Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:16:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:16:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym – Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:16:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:458;a:16:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:16:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:16:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm – Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:16:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:16:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency – Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:16:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:464;a:16:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:16:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:16:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym – Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:16:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:468;a:16:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency – Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:16:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:16:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:16:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:472;a:16:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:473;a:16:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:474;a:16:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:16:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:476;a:16:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:16:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:478;a:16:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:16:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:480;a:16:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:16:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:482;a:16:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:16:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:484;a:16:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:16:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:16:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:16:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:16:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company – Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:16:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:16:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:16:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:16:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:16:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:16:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:16:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:16:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:16:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:16:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:16:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:16:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:16:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:16:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:16:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:16:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:16:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:16:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:16:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:16:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:16:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:16:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:16:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:16:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:16:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:16:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:515;a:16:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:16:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:517;a:16:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:16:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:519;a:16:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:16:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:16:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:16:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:16:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:16:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:16:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:16:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:16:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:16:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:16:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:16:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:16:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:16:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:16:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:16:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:16:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:16:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:16:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:16:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:16:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design – Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:16:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design – News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:16:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design – Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:16:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design – Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:16:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant – 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:16:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:16:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant – Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:16:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:16:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm – Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:16:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:16:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:16:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm – Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:16:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:16:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate – 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:16:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:16:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:16:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate – Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:16:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate – Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:16:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate – single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:16:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:16:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine – Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:16:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:16:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:16:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine – Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:16:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine – Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:16:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine – Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:16:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:16:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:16:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:16:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:16:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course – End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:16:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:16:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course – Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:16:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course – Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:16:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:16:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography – Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:16:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:16:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography – Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:16:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:16:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:16:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:16:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:16:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:16:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"Header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:16:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio – Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:16:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:16:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:16:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio – Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:16:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:588;a:16:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:16:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:16:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:16:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:16:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:16:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:594;a:16:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:595;a:16:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:596;a:16:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:16:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:16:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:16:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:16:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:601;a:16:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:602;a:16:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:603;a:16:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:16:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:16:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:16:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:16:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:16:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:16:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:16:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:16:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:16:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:16:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:16:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:16:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:16:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:16:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:16:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:16:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:16:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:16:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:16:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:16:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:16:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist – single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:16:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist – single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:16:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:627;a:16:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:16:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:629;a:16:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:16:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:631;a:16:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:632;a:16:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:633;a:16:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:16:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:635;a:16:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:636;a:16:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:637;a:16:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:638;a:16:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:16:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:640;a:16:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:641;a:16:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:642;a:16:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:16:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:644;a:16:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:645;a:16:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:646;a:16:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:647;a:16:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:648;a:16:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:16:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:16:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:16:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:16:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:16:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:16:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:16:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:16:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:16:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:16:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:16:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:16:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:16:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:16:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:16:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:16:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:16:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:16:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:667;a:16:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:668;a:16:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:669;a:16:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:670;a:16:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:671;a:16:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:672;a:16:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:673;a:16:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:674;a:16:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:675;a:16:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:16:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:16:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:16:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:679;a:16:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:16:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:16:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:16:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:16:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:16:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:16:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:16:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:16:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:688;a:16:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:16:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:16:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:16:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:16:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:16:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:694;a:16:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:695;a:16:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:16:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:697;a:16:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:698;a:16:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:699;a:16:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:700;a:16:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:701;a:16:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:702;a:16:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:16:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:704;a:16:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:16:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:706;a:16:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:16:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:16:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:709;a:16:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:16:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:16:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:16:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:713;a:16:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:714;a:16:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:16:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:16:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:16:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:16:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:16:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:16:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:16:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:16:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:16:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel – Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:16:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel – Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:16:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel – Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:16:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel – Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:16:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:16:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:16:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog – Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:16:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog – Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:16:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:16:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:16:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog – Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:16:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog – Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(350,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"Capture Hearts and Sales With Our Valentine’s Day Kit\";s:7:\"excerpt\";s:185:\"Our new Valentine\'s Day Kit is full of wonderful landing pages, sections, popups, and vector assets to help you quickly get your website ready for the most romantic holiday of the year.\";s:7:\"created\";i:1642422001;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:118:\"https://elementor.com/blog/valentines-day-kit/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:55:\"How To Create a Content Marketing Strategy From Scratch\";s:7:\"excerpt\";s:208:\"A clear content strategy is crucial to stand out and drive business results in an increasingly saturated marketplace. In this guide, we\'ll walk you through the steps of creating a successful content strategy.\";s:7:\"created\";i:1642091419;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:126:\"https://elementor.com/blog/content-marketing-strategy/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:66:\"A Look at Your Favorite Elementor Features and Offerings From 2021\";s:7:\"excerpt\";s:250:\"Back in November, we asked you which of the features or offerings released in 2021 were your favorite. As we reviewed the results we also took the time to reflect on what we’ve done in the past year to see how far we’ve come, let’s take a look.\";s:7:\"created\";i:1641715922;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:132:\"https://elementor.com/blog/your-top-features-offerings-2021/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:41:\"End-of-Year Showcase 2021 — the Winners\";s:7:\"excerpt\";s:189:\"From an initial pool of over 100 hopefuls to a shortlist of 30, we’ve finally arrived at the moment you’ve all been waiting for — announcing the Top 10 Elementor Websites of the Year!\";s:7:\"created\";i:1641387548;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:137:\"https://elementor.com/blog/end-of-year-showcase-2021-the-winners/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:38:\"10 Web Design Trends To Expect in 2022\";s:7:\"excerpt\";s:236:\"2021 was a crazy year to say the least. Let’s pause for a moment to wrap things up and see what the future holds by taking a sneak peek into next year’s top design fads. We’ve selected upcoming 10 trends to spark your imagination.\";s:7:\"created\";i:1640049600;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:117:\"https://elementor.com/blog/web-design-trends/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(353,'woocommerce_meta_box_errors','a:0:{}','yes'),(356,'nf_active_promotions','{\"dashboard\":[{\"id\":\"personal-20\",\"location\":\"dashboard\",\"type\":\"personal\",\"content\":\"<a href=\\\"https:\\/\\/ninjaforms.com\\/personal-membership\\/?utm_source=ninja-forms-plugin&utm_medium=dashboard-banner-ad&utm_campaign=personal-banner-ad&utm_content=personal-20\\\" target=\\\"_blank\\\" class=\\\"nf-remove-promo-styling\\\"><img src=\\\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-personal-20.png\\\"><\\/a>\",\"script\":\"\"},{\"id\":\"personal-50\",\"location\":\"dashboard\",\"type\":\"personal\",\"content\":\"<a href=\\\"https:\\/\\/ninjaforms.com\\/personal-membership\\/?utm_source=ninja-forms-plugin&utm_medium=dashboard-banner-ad&utm_campaign=personal-banner-ad&utm_content=personal-50\\\" target=\\\"_blank\\\" class=\\\"nf-remove-promo-styling\\\"><img src=\\\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-personal-50.png\\\"><\\/a>\",\"script\":\"\"},{\"id\":\"sendwp-banner\",\"location\":\"dashboard\",\"content\":\"<span aria-label=\\\"SendWP. Getting WordPress email into an inbox shouldn\'t be that hard! Never miss another receipt, form submission, or any WordPress email ever again.\\\" style=\\\"cursor:pointer;width:800px;height:83px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;background-image:url(\'https:\\/\\/michaelblakemenswear.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-sendwp.png\');display:block;\\\"><\\/span>\",\"type\":\"sendwp\",\"script\":\"\\n setTimeout(function(){ \\/* Wait for services to init. *\\/\\n var data = {\\n width: 450,\\n closeOnClick: \'body\',\\n closeOnEsc: true,\\n content: \'<p><h2>Frustrated that WordPress email isn\\u2019t being received?<\\/h2><p>Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.<\\/p><h3>Sign up for SendWP today, and never deal with WordPress email issues again!<\\/h3><p>SendWP is an email service that removes your web host from the email equation.<\\/p><ul style="list-style-type:initial;margin-left: 20px;"><li>Sends email through dedicated email service, increasing email deliverability.<\\/li><li>Keeps form submission emails out of spam by using a trusted email provider.<\\/li><li>On a shared web host? Don\\u2019t worry about emails being rejected because of blocked IP addresses.<\\/li><li><strong>$1 for the first month. $9\\/month after. Cancel anytime!<\\/strong><\\/li><\\/ul><\\/p><br \\/>\',\\n btnPrimary: {\\n text: \'Sign me up!\',\\n callback: function() {\\n var spinner = document.createElement(\'span\');\\n spinner.classList.add(\'dashicons\', \'dashicons-update\', \'dashicons-update-spin\');\\n var w = this.offsetWidth;\\n this.innerHTML = spinner.outerHTML;\\n this.style.width = w+\'px\';\\n ninja_forms_sendwp_remote_install();\\n }\\n },\\n btnSecondary: {\\n text: \'Cancel\',\\n callback: function() {\\n sendwpModal.toggleModal(false);\\n }\\n }\\n }\\n var sendwpModal = new NinjaModal(data);\\n }, 500);\\n \"}]}','no'),(373,'current_theme','Hello Elementor','yes'),(374,'theme_mods_hello-elementor','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:428;}','yes'),(375,'theme_switched','','yes'),(376,'hello_theme_version','2.4.1','yes'),(377,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(386,'_transient_woocommerce_reports-transient-version','1641933928','yes'),(389,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(390,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(391,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(392,'temp_count','a:1:{s:11:\"Default Kit\";s:11:\"Default Kit\";}','yes'),(394,'ninja_forms_optin_reported','1','yes'),(514,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":6,\"critical\":0}','yes'),(531,'_transient_product_query-transient-version','1644165836','yes'),(534,'elementskit-lite__stories_last_check','1644165834','yes'),(535,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10007065\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007065;s:5:\"title\";s:65:\"How to Stop DDoS Attacks on WordPress without Technical Knowledge\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:49:\"https://wpmet.com/stop-ddos-attacks-on-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007064\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007064;s:5:\"title\";s:53:\"How to Run a WooCommerce Flash Sale in 5 Simple Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:41:\"https://wpmet.com/woocommerce-flash-sale/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007063\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007063;s:5:\"title\";s:44:\"7 Most Common WordPress Errors With Solution\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:47:\"https://wpmet.com/most-common-wordpress-errors/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007059\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007059;s:5:\"title\";s:23:\"Wpmet Flash Sale 2.2.22\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644192000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:34:\"https://wpmet.com/story/flash-sale\";s:11:\"story_image\";s:72:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007054\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007054;s:5:\"title\";s:61:\"Twenty Twenty-Two WordPress Theme – Things You Need to Know\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:42:\"https://wpmet.com/twenty-twenty-two-theme/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007053\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007053;s:5:\"title\";s:53:\"World’s Top Ranking Websites Built with ElementsKit\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:57:\"https://wpmet.com/top-ranking-websites-using-elementskit/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007052\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007052;s:5:\"title\";s:34:\"How To Run a Facebook Ads Campaign\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:46:\"https://wpmet.com/run-a-facebook-ads-campaign/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007051\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007051;s:5:\"title\";s:57:\"WooCommerce vs Magento: Which one is Best for you? (2022)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:41:\"https://wpmet.com/woocommerce-vs-magento/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007050\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007050;s:5:\"title\";s:49:\"How to Create a Portfolio Website that Gets Leads\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:45:\"https://wpmet.com/create-a-portfolio-website/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10007049\";O:8:\"stdClass\":9:{s:2:\"id\";i:10007049;s:5:\"title\";s:56:\"What are the New WordPress 5.9 Features and Improvements\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:58:\"https://wpmet.com/wordpress-5-9-features-and-improvements/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(536,'_transient_shipping-transient-version','1633375846','yes'),(605,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(606,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:2:{s:16:\"menu_location_16\";a:1:{s:10:\"is_enabled\";i:0;}s:16:\"menu_location_23\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(663,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:27:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-wc-pay\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-payments\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/woocommerce-payments.svg\";s:5:\"title\";s:20:\"WooCommerce Payments\";s:4:\"copy\";s:125:\"Securely accept payments and manage transactions directly from your WooCommerce dashboard – no setup costs or monthly fees.\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-payments/\";}i:14;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:15;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:16;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:17;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:18;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:19;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:20;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:21;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:22;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:23;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:24;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:25;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:26;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1644165892;}','no'),(676,'_transient_product-transient-version','1638981058','yes'),(855,'category_children','a:0:{}','yes'),(931,'nf_form_tel_data','1','no'),(932,'ninja_forms_do_not_allow_tracking','1','yes'),(939,'nf_sub_expiration','a:0:{}','yes'),(975,'_transient_timeout_elementskit-lite-go-pro-noti2ce','1655599077','no'),(976,'_transient_elementskit-lite-go-pro-noti2ce','1','no'),(977,'pa_review_notice','1','yes'),(1024,'nf_form_tel_sent','true','no'),(1205,'bsf_analytics_optin','no','no'),(1208,'elementor_allow_tracking','no','yes'),(1209,'elementor_tracker_notice','1','yes'),(1270,'auto_update_plugins','a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:9:\"hello.php\";i:5;s:27:\"ninja-forms/ninja-forms.php\";i:6;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:7;s:27:\"woocommerce/woocommerce.php\";}','no'),(1293,'elementor_connect_site_key','8962b1447d5b82aa86bc62a7c3543e6a','yes'),(1312,'wc_ppec_version','2.1.2','yes'),(1321,'woocommerce-ppcp-settings','a:15:{s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:15:\"Pay via PayPal.\";s:29:\"button_single_product_enabled\";b:1;s:24:\"button_mini-cart_enabled\";b:1;s:19:\"button_cart_enabled\";b:1;s:10:\"brand_name\";s:29:\"Michael Blake Men's Wear\";s:17:\"dcc_gateway_title\";s:12:\"Credit Cards\";s:23:\"dcc_gateway_description\";s:26:\"Pay with your credit card.\";s:13:\"vault_enabled\";b:0;s:10:\"sandbox_on\";b:0;s:20:\"products_dcc_enabled\";N;s:24:\"client_secret_production\";s:80:\"EDmkBeBoTlnWOTNJA275_XQvX5eExyOkzKTUa_okiMapJfvMdrw_UVJCk65zRgrneHaJxbNoMfXXRzkH\";s:20:\"client_id_production\";s:80:\"AQsY3Z59js2B_ZMP3z5ifkNic1HYCaMoWqRe3Gd-8EhaB2rgKAKcHee9wDMa383Y1hdYXONJx_HeDoO2\";s:13:\"client_secret\";s:80:\"EDmkBeBoTlnWOTNJA275_XQvX5eExyOkzKTUa_okiMapJfvMdrw_UVJCk65zRgrneHaJxbNoMfXXRzkH\";s:9:\"client_id\";s:80:\"AQsY3Z59js2B_ZMP3z5ifkNic1HYCaMoWqRe3Gd-8EhaB2rgKAKcHee9wDMa383Y1hdYXONJx_HeDoO2\";}','yes'),(1330,'action_scheduler_migration_status','complete','yes'),(1345,'woocommerce_ppec_payer_id_live_3d4353149d55138396e304afc3426825','A7TVXGH44JS8W','yes'),(1346,'woocommerce_ppec_paypal_settings','a:77:{s:11:\"environment\";s:4:\"live\";s:12:\"api_username\";s:35:\"michaelblakemenswear_api1.yahoo.com\";s:12:\"api_password\";s:16:\"HHBUHEW7F6GT9EXB\";s:13:\"api_signature\";s:56:\"AkTfnUMYA.2.NemxqgWv2u0Elvq-AqP7-rmXoFJrIb60KIyHYplJ7oc8\";s:15:\"api_certificate\";s:0:\"\";s:11:\"api_subject\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:23:\"sandbox_api_certificate\";s:0:\"\";s:19:\"sandbox_api_subject\";s:0:\"\";s:10:\"brand_name\";s:24:\"Michael Blake Men\'s Wear\";s:14:\"logo_image_url\";s:0:\"\";s:16:\"header_image_url\";s:0:\"\";s:10:\"page_style\";s:0:\"\";s:12:\"landing_page\";s:5:\"Login\";s:5:\"debug\";s:2:\"no\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:15:\"require_billing\";s:2:\"no\";s:20:\"require_phone_number\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:16:\"instant_payments\";s:2:\"no\";s:26:\"subtotal_mismatch_behavior\";s:3:\"add\";s:7:\"use_spb\";s:3:\"yes\";s:12:\"button_color\";s:4:\"gold\";s:12:\"button_shape\";s:4:\"rect\";s:12:\"button_label\";s:6:\"paypal\";s:13:\"button_layout\";s:8:\"vertical\";s:11:\"button_size\";s:10:\"responsive\";s:20:\"hide_funding_methods\";a:1:{i:0;s:4:\"CARD\";}s:14:\"credit_enabled\";s:3:\"yes\";s:22:\"credit_message_enabled\";s:2:\"no\";s:21:\"credit_message_layout\";s:4:\"text\";s:19:\"credit_message_logo\";s:7:\"primary\";s:28:\"credit_message_logo_position\";s:4:\"left\";s:25:\"credit_message_text_color\";s:5:\"black\";s:25:\"credit_message_flex_color\";s:5:\"black\";s:25:\"credit_message_flex_ratio\";s:3:\"1x1\";s:21:\"cart_checkout_enabled\";s:2:\"no\";s:25:\"mini_cart_settings_toggle\";s:2:\"no\";s:23:\"mini_cart_button_layout\";s:8:\"vertical\";s:21:\"mini_cart_button_size\";s:10:\"responsive\";s:22:\"mini_cart_button_label\";s:6:\"paypal\";s:30:\"mini_cart_hide_funding_methods\";a:1:{i:0;s:4:\"CARD\";}s:24:\"mini_cart_credit_enabled\";s:3:\"yes\";s:34:\"checkout_on_single_product_enabled\";s:2:\"no\";s:30:\"single_product_settings_toggle\";s:3:\"yes\";s:28:\"single_product_button_layout\";s:10:\"horizontal\";s:26:\"single_product_button_size\";s:10:\"responsive\";s:27:\"single_product_button_label\";s:6:\"paypal\";s:35:\"single_product_hide_funding_methods\";a:1:{i:0;s:4:\"CARD\";}s:29:\"single_product_credit_enabled\";s:3:\"yes\";s:37:\"single_product_credit_message_enabled\";s:3:\"yes\";s:36:\"single_product_credit_message_layout\";s:4:\"text\";s:34:\"single_product_credit_message_logo\";s:7:\"primary\";s:43:\"single_product_credit_message_logo_position\";s:4:\"left\";s:40:\"single_product_credit_message_text_color\";s:5:\"black\";s:40:\"single_product_credit_message_flex_color\";s:5:\"black\";s:40:\"single_product_credit_message_flex_ratio\";s:3:\"1x1\";s:12:\"mark_enabled\";s:3:\"yes\";s:20:\"mark_settings_toggle\";s:2:\"no\";s:18:\"mark_button_layout\";s:8:\"vertical\";s:16:\"mark_button_size\";s:10:\"responsive\";s:17:\"mark_button_label\";s:6:\"paypal\";s:25:\"mark_hide_funding_methods\";a:1:{i:0;s:4:\"CARD\";}s:19:\"mark_credit_enabled\";s:3:\"yes\";s:27:\"mark_credit_message_enabled\";s:3:\"yes\";s:26:\"mark_credit_message_layout\";s:4:\"text\";s:24:\"mark_credit_message_logo\";s:7:\"primary\";s:33:\"mark_credit_message_logo_position\";s:4:\"left\";s:30:\"mark_credit_message_text_color\";s:5:\"black\";s:30:\"mark_credit_message_flex_color\";s:5:\"black\";s:30:\"mark_credit_message_flex_ratio\";s:3:\"1x1\";s:16:\"reroute_requests\";s:2:\"no\";}','yes'),(1347,'woo_pp_admin_error','a:1:{i:0;a:1:{s:7:\"success\";s:59:\"Success! Your PayPal account has been set up successfully.\";}}','yes'),(1442,'elementor_log','a:17:{s:32:\"340a3b1ad0e88aad16d0a9247f2ffad0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-23 20:34:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-23 20:34:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"adf959055871fc8719ab985672d95d2e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-23 20:34:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-23 20:34:04\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"796fc35e47f770538f2646d0d77a6c99\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-23 20:34:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-23 20:34:04\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4705a595e3e7094abe9615d46ae6be17\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-23 20:34:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-23 20:34:04\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"b3c8d12c5d6fe6f7a575cc46ebdb62b8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-23 20:34:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-23 20:34:04\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.3.1\";s:2:\"to\";s:5:\"3.4.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"07ef9a2f461282479fe91d869815684f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-30 09:23:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.2\";s:2:\"to\";s:5:\"3.4.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-30 09:23:35\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.2\";s:2:\"to\";s:5:\"3.4.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"585ff5d6f2012a0993b3dfca0eaada34\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-30 09:23:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-30 09:23:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"584ee45cd54815f39623cec329947c9e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-30 09:23:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-30 09:23:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"837a05926262cc37b7c25682de8c2025\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-30 09:23:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-30 09:23:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"0237bc120d9c1a9819b9e00d23cd6d89\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-08-30 09:23:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.2\";s:2:\"to\";s:5:\"3.4.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-08-30 09:23:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.2\";s:2:\"to\";s:5:\"3.4.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6a097a4ab55004e34f354cbd7133bff7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-13 20:37:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.3\";s:2:\"to\";s:5:\"3.4.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-13 20:37:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.3\";s:2:\"to\";s:5:\"3.4.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"901ddb3b796f2c0bd1f8fccbe51c1d62\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-13 20:37:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-13 20:37:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"1167d520e7fbe28dd68a6b7ecc4bc0cd\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-13 20:37:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-13 20:37:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"83669bbb9c4855a03ac8cda95ec43d05\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-13 20:37:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-13 20:37:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4617a4efbc9dba59edfb21b9015ff2a0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-13 20:37:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.3\";s:2:\"to\";s:5:\"3.4.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-13 20:37:54\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.3\";s:2:\"to\";s:5:\"3.4.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"7b10c87b029057aad774a9637831af67\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-09-13 20:37:55\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.3\";s:2:\"to\";s:5:\"3.4.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-09-13 20:37:55\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.4.3\";s:2:\"to\";s:5:\"3.4.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ef3a55423dcaa44502c8d315dd60a502\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"286941\";s:7:\"\0*\0file\";s:95:\"https://michaelblakemenswear.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2022-02-04 16:12:20\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:111:\"Blocked a frame with origin \\"https://michaelblakemenswear.com\\" from accessing a cross-origin frame.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2022-02-04 16:12:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1643991140\";s:7:\"message\";s:101:\"Blocked a frame with origin \\\"https://michaelblakemenswear.com\\\" from accessing a cross-origin frame.\";s:3:\"url\";s:95:\"https://michaelblakemenswear.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.5.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"286941\";}}}','no'),(1445,'woocommerce_onboarding_profile','a:8:{s:9:\"completed\";b:1;s:12:\"setup_client\";b:0;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:27:\"fashion-apparel-accessories\";}}s:13:\"product_types\";a:1:{i:0;s:8:\"physical\";}s:13:\"product_count\";s:6:\"11-100\";s:14:\"selling_venues\";s:12:\"brick-mortar\";s:7:\"revenue\";s:10:\"2500-10000\";s:19:\"business_extensions\";a:6:{i:0;s:20:\"woocommerce-payments\";i:1;s:20:\"woocommerce-services\";i:2;s:7:\"jetpack\";i:3;s:8:\"mailpoet\";i:4;s:23:\"google-listings-and-ads\";i:5;s:25:\"mailchimp-for-woocommerce\";}}','yes'),(1449,'woocommerce_force_ssl_checkout','no','yes'),(1450,'woocommerce_unforce_ssl_checkout','no','yes'),(1451,'woocommerce_analytics_enabled','yes','yes'),(1487,'rsssl_activated_plugin','1','yes'),(1488,'rlrsssl_options','a:14:{s:12:\"site_has_ssl\";b:1;s:25:\"ssl_success_message_shown\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:1;s:17:\"plugin_db_version\";s:5:\"5.0.9\";s:11:\"ssl_enabled\";b:1;s:4:\"hsts\";b:0;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:20:\"do_not_edit_htaccess\";b:0;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:17:\"htaccess_redirect\";b:0;}','yes'),(1489,'rsssl_remaining_tasks','1','yes'),(1500,'rsssl_current_version','5.0.9','yes'),(1507,'rsssl_le_installation_progress','a:4:{i:0;s:16:\"dns-verification\";i:1;s:13:\"system-status\";i:2;s:6:\"domain\";i:3;s:11:\"directories\";}','yes'),(1515,'rsssl_options_lets-encrypt','a:8:{s:13:\"include_alias\";s:1:\"1\";s:13:\"email_address\";s:23:\"ekow@esselwebdesign.com\";s:15:\"accept_le_terms\";s:1:\"1\";s:15:\"other_host_type\";s:4:\"none\";s:11:\"cpanel_host\";s:0:\"\";s:15:\"cpanel_username\";s:0:\"\";s:15:\"cpanel_password\";s:0:\"\";s:17:\"store_credentials\";s:1:\"0\";}','yes'),(1516,'rsssl_initial_alias_domain_value_set','1','yes'),(1740,'rsssl_private_key_path','/home2/church/ssl/keys/account_live_ekow@esselwebdesign.com/order_76b4db64dd20321442ed0c18b6dcf3e7/bundle_1637543635/private.pem','yes'),(1741,'rsssl_certificate_path','/home2/church/ssl/keys/account_live_ekow@esselwebdesign.com/order_76b4db64dd20321442ed0c18b6dcf3e7/bundle_1637543635/certificate.crt','yes'),(1742,'rsssl_intermediate_path','/home2/church/ssl/keys/account_live_ekow@esselwebdesign.com/order_76b4db64dd20321442ed0c18b6dcf3e7/bundle_1637543635/intermediate.pem','yes'),(1743,'rsssl_le_certificate_generated_by_rsssl','1','yes'),(1751,'rsssl_activation_timestamp','1629771550','yes'),(1756,'rsssl_le_start_installation','1','yes'),(1932,'woocommerce_usps_simple_settings','a:40:{s:7:\"enabled\";s:3:\"yes\";s:6:\"sender\";s:5:\"72113\";s:7:\"user_id\";s:0:\"\";s:15:\"commercial_rate\";s:3:\"yes\";s:15:\"group_by_weight\";s:2:\"no\";s:12:\"express_mail\";s:0:\"\";s:14:\"t_express_mail\";s:0:\"\";s:14:\"express_mail_3\";s:3:\"yes\";s:14:\"express_mail_2\";s:3:\"yes\";s:15:\"express_mail_23\";s:3:\"yes\";s:13:\"priority_mail\";s:0:\"\";s:15:\"t_priority_mail\";s:0:\"\";s:15:\"priority_mail_1\";s:3:\"yes\";s:16:\"priority_mail_33\";s:3:\"yes\";s:16:\"priority_mail_18\";s:3:\"yes\";s:16:\"priority_mail_47\";s:3:\"yes\";s:16:\"priority_mail_48\";s:3:\"yes\";s:16:\"priority_mail_49\";s:3:\"yes\";s:16:\"priority_mail_50\";s:3:\"yes\";s:11:\"first_class\";s:0:\"\";s:13:\"t_first_class\";s:0:\"\";s:14:\"first_class_0A\";s:3:\"yes\";s:14:\"first_class_0B\";s:3:\"yes\";s:14:\"first_class_0C\";s:3:\"yes\";s:14:\"first_class_0D\";s:3:\"yes\";s:14:\"first_class_12\";s:3:\"yes\";s:14:\"first_class_15\";s:3:\"yes\";s:14:\"first_class_19\";s:3:\"yes\";s:14:\"first_class_61\";s:3:\"yes\";s:14:\"first_class_53\";s:3:\"yes\";s:14:\"first_class_78\";s:3:\"yes\";s:13:\"standard_post\";s:0:\"\";s:15:\"t_standard_post\";s:0:\"\";s:15:\"standard_post_4\";s:3:\"yes\";s:10:\"media_mail\";s:0:\"\";s:12:\"t_media_mail\";s:0:\"\";s:12:\"media_mail_6\";s:2:\"no\";s:12:\"library_mail\";s:0:\"\";s:14:\"t_library_mail\";s:0:\"\";s:14:\"library_mail_7\";s:2:\"no\";}','yes'),(4644,'product_cat_children','a:1:{i:21;a:6:{i:0;i:25;i:1;i:26;i:2;i:28;i:3;i:29;i:4;i:30;i:5;i:31;}}','yes'),(4716,'woocommerce_refund_returns_page_id','384','yes'),(4721,'woocommerce_task_list_tracked_completed_tasks','a:4:{i:0;s:13:\"store_details\";i:1;s:8:\"products\";i:2;s:8:\"payments\";i:3;s:3:\"tax\";}','yes'),(4726,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(4739,'jetpack_activated','1','yes'),(4742,'jetpack_activation_source','a:2:{i:0;s:7:\"unknown\";i:1;N;}','yes'),(4743,'jetpack_sync_settings_disable','0','yes'),(4744,'jetpack_options','a:12:{s:7:\"version\";s:15:\"10.0:1630945558\";s:11:\"old_version\";s:15:\"10.0:1630945558\";s:14:\"last_heartbeat\";i:1646929606;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:197341199;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:11:\"master_user\";i:2;s:20:\"recommendations_data\";a:4:{s:18:\"site-type-personal\";b:0;s:18:\"site-type-business\";b:1;s:15:\"site-type-store\";b:0;s:15:\"site-type-other\";b:0;}s:20:\"recommendations_step\";s:7:\"monitor\";s:16:\"first_admin_view\";b:1;}','yes'),(4748,'mailchimp-woocommerce','a:2:{s:33:\"woocommerce_settings_save_general\";b:1;s:19:\"store_currency_code\";s:3:\"USD\";}','yes'),(4750,'mailchimp-woocommerce-store_id','6136411bc463b','yes'),(4751,'mailchimp-woocommerce-store-id-last-verified','1642041096','yes'),(4756,'jetpack_connection_active_plugins','a:3:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}s:23:\"google-listings-and-ads\";a:1:{s:4:\"name\";s:23:\"Google Listings and Ads\";}s:20:\"woocommerce-payments\";a:1:{s:4:\"name\";s:20:\"WooCommerce Payments\";}}','yes'),(4757,'widget_mailpoet_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4758,'widget_currency_switcher_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(4759,'woocommerce_woocommerce_payments_settings','a:15:{s:7:\"enabled\";s:2:\"no\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";s:23:\"payment_request_details\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:28:\"payment_request_button_label\";s:7:\"Buy now\";s:32:\"payment_request_button_locations\";a:3:{i:0;s:7:\"product\";i:1;s:4:\"cart\";i:2;s:8:\"checkout\";}s:30:\"upe_enabled_payment_method_ids\";a:1:{i:0;s:4:\"card\";}s:27:\"payment_request_button_size\";s:7:\"default\";s:35:\"payment_request_button_branded_type\";s:0:\"\";}','yes'),(4760,'wcpay_activation_timestamp','1630945606','yes'),(4761,'woocommerce_woocommerce_payments_version','2.9.0','yes'),(4762,'wcpay_multi_currency_store_currency','USD','yes'),(4764,'do_activate','0','yes'),(4771,'jetpack_available_modules','a:1:{s:4:\"10.0\";a:42:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(4773,'gla_file_version','1.4.2','yes'),(4774,'gla_install_timestamp','1630945622','yes'),(4775,'gla_db_version','1.4.2','yes'),(4776,'jetpack_log','a:1:{i:0;a:4:{s:4:\"time\";i:1630945622;s:7:\"user_id\";i:2;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(4777,'jetpack_tos_agreed','1','yes'),(4778,'jetpack_secrets','a:0:{}','no'),(4779,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(4780,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(4781,'_transient_jetpack_assumed_site_creation_date','2021-08-15 20:32:01','yes'),(4782,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"MC&O9^Ry3RJbkpT&BpWTZzMc2!pXaD6B.EFp*4YCdojn@gubUGJ%1Yex3KSRTLmw7\";s:11:\"user_tokens\";a:1:{i:2;s:67:\"vQK*vJQ^Z6(RyQoy5(Tzmrxoh4r2JCx#.gKwOjoCCSlGaSm@J(aC04hBm(*ZBeUOK.2\";}}','yes'),(4783,'jetpack_active_modules','a:7:{i:0;s:21:\"enhanced-distribution\";i:1;s:8:\"json-api\";i:2;s:5:\"stats\";i:3;s:18:\"verification-tools\";i:4;s:21:\"woocommerce-analytics\";i:5;s:5:\"notes\";i:6;s:7:\"protect\";}','yes'),(4784,'jetpack_unique_registrations','1','yes'),(4785,'jetpack_sync_settings_max_queue_size','5000','yes'),(4786,'jetpack_sync_settings_max_queue_lag','7200','yes'),(4788,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(4789,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(4790,'jetpack_sync_settings_upload_max_rows','500','yes'),(4791,'jetpack_sync_settings_sync_wait_time','10','yes'),(4792,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(4793,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(4794,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(4795,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(4799,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(4801,'jetpack_sync_settings_render_filtered_content','0','yes'),(4802,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(4804,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(4806,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(4807,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(4808,'jetpack_sync_settings_sync_via_cron','1','yes'),(4809,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(4810,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(4811,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(4812,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(4813,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(4814,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(4815,'jetpack_sync_settings_full_sync_limits','a:5:{s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}}','yes'),(4816,'jetpack_sync_settings_checksum_disable','0','yes'),(4820,'jetpack_plugin_api_action_links','a:11:{s:51:\"header-footer-elementor/header-footer-elementor.php\";a:1:{s:8:\"Settings\";s:73:\"https://michaelblakemenswear.com/wp-admin/edit.php?post_type=elementor-hf\";}s:55:\"elex-usps-shipping-method/usps-woocommerce-shipping.php\";a:3:{s:8:\"Settings\";s:108:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=wc-settings&tab=shipping§ion=elex_shipping_usps\";s:15:\"Premium Upgrade\";s:82:\"https://elextensions.com/plugin/woocommerce-usps-shipping-plugin-with-print-label/\";s:7:\"Support\";s:33:\"https://elextensions.com/support/\";}s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";a:1:{s:8:\"Settings\";s:78:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=mailchimp-woocommerce\";}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";a:3:{s:8:\"Settings\";s:84:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=premium-addons#tab=elements\";s:27:\"Rollback to Version 4.8.11\";s:107:\"https://michaelblakemenswear.com/wp-admin/admin-post.php?action=premium_addons_rollback&_wpnonce=3bf2da6ba5\";s:6:\"Go Pro\";s:117:\"https://premiumaddons.com/pro?utm_source=plugins-page&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=helloelementor\";}s:27:\"woocommerce/woocommerce.php\";a:1:{s:8:\"Settings\";s:68:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=wc-settings\";}s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";a:2:{s:8:\"Settings\";s:109:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=wc-settings&tab=integration§ion=google_analytics\";s:7:\"Support\";s:77:\"https://wordpress.org/support/plugin/woocommerce-google-analytics-integration\";}s:45:\"woocommerce-payments/woocommerce-payments.php\";a:1:{s:8:\"Settings\";s:110:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments\";}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";a:1:{s:8:\"Settings\";s:101:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=ppec_paypal\";}s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";a:1:{s:8:\"Settings\";s:102:\"https://michaelblakemenswear.com/wp-admin/admin.php?page=wc-settings&tab=checkout§ion=ppcp-gateway\";}s:45:\"woocommerce-services/woocommerce-services.php\";a:1:{s:7:\"Support\";s:51:\"https://woocommerce.com/my-account/create-a-ticket/\";}s:27:\"wp-super-cache/wp-cache.php\";a:1:{s:8:\"Settings\";s:79:\"https://michaelblakemenswear.com/wp-admin/options-general.php?page=wpsupercache\";}}','yes'),(4835,'jetpack_constants_sync_checksum','a:37:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3555605546;s:14:\"WP_CONTENT_DIR\";i:1043060820;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:2939777268;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:794370206;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;s:8:\"WP_DEBUG\";i:734881840;s:14:\"WC_PLUGIN_FILE\";i:739742415;s:10:\"WC_ABSPATH\";i:2340390270;s:18:\"WC_PLUGIN_BASENAME\";i:1149093810;s:10:\"WC_VERSION\";i:2867656941;s:19:\"WOOCOMMERCE_VERSION\";i:2867656941;s:21:\"WC_ROUNDING_PRECISION\";i:498629140;s:25:\"WC_DISCOUNT_ROUNDING_MODE\";i:450215437;s:20:\"WC_TAX_ROUNDING_MODE\";i:2212294583;s:12:\"WC_DELIMITER\";i:2455911554;s:10:\"WC_LOG_DIR\";i:3519147426;s:22:\"WC_SESSION_CACHE_GROUP\";i:4278978988;s:22:\"WC_TEMPLATE_DEBUG_MODE\";i:734881840;s:10:\"WPLOCKDOWN\";i:634125391;s:24:\"WPSC_DISABLE_COMPRESSION\";i:634125391;s:20:\"WPSC_DISABLE_LOCKING\";i:634125391;s:28:\"WPSC_DISABLE_HTACCESS_UPDATE\";i:634125391;s:20:\"ADVANCEDCACHEPROBLEM\";i:634125391;}','yes'),(4836,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(4878,'jetpack_callables_sync_checksum','a:38:{s:18:\"wp_max_upload_size\";i:1819132959;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1663056028;s:26:\"main_network_site_wpcom_id\";i:3270864161;s:8:\"site_url\";i:1663056028;s:8:\"home_url\";i:1663056028;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:4231517987;s:10:\"post_types\";i:3715796271;s:18:\"post_type_features\";i:1948145330;s:10:\"shortcodes\";i:1683886965;s:27:\"rest_api_allowed_post_types\";i:3877772566;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:10:\"wp_version\";i:1137011239;s:11:\"get_plugins\";i:4271085400;s:24:\"get_plugins_action_links\";i:2984176212;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:44235747;s:5:\"roles\";i:1070210107;s:8:\"timezone\";i:3808505409;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;s:13:\"theme_support\";i:2369852025;s:23:\"wp_get_environment_type\";i:1138987844;s:12:\"is_fse_theme\";i:734881840;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2441441240;s:14:\"active_modules\";i:117259010;s:24:\"available_jetpack_blocks\";i:2036078760;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:22:\"wp_super_cache_globals\";i:2536254310;}','no'),(4879,'jpsq_sync_checkout','0:0','no'),(4880,'wc_connect_options','a:3:{s:12:\"tos_accepted\";b:1;s:10:\"store_guid\";s:36:\"4e472fe4-08ba-4c84-8cc7-866404969366\";s:25:\"shipping_methods_migrated\";b:1;}','yes'),(4881,'wc_connect_services_last_result_code','200','yes'),(4882,'jetpack_testimonial','0','yes'),(4885,'verification_services_codes','0','yes'),(4887,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:197341199;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(4889,'_transient_no_forms_displayed_bellow_content','1','yes'),(4890,'jetpack_next_sync_time_sync','1646058745','yes'),(4891,'jp_sync_lock_full_sync','','no'),(4893,'jp_sync_retry_after_immediate-send','','no'),(4895,'jetpack_next_sync_time_full-sync-enqueue','1630945696','yes'),(4907,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(4913,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1630945684;s:8:\"finished\";i:1630945695;s:8:\"progress\";a:5:{s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"2\";}s:15:\"network_options\";a:1:{s:8:\"finished\";b:1;}}s:6:\"config\";a:5:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:2;}s:15:\"network_options\";b:1;}}','no'),(4920,'jetpack_protect_key','9dbcb81ca1e64073082c3c8805d393b0139bfc64','no'),(4925,'jetpack_active_modules_initialized','1','yes'),(4942,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(5026,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1630945971.38010311126708984375;}','yes'),(5091,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:2239753068;s:13:\"update_themes\";i:2425778506;s:11:\"update_core\";i:3923573055;}','yes'),(5612,'_transient_dirsize_cache','a:12:{s:74:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/elementor/thumbs\";i:1838417;s:71:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/elementor/css\";i:82409;s:67:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/elementor\";i:1920826;s:77:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/woocommerce_uploads\";i:13;s:72:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/mailpoet/cache\";i:27;s:66:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/mailpoet\";i:54;s:63:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/rsssl\";i:35;s:65:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/wc-logs\";i:201016;s:65:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/2021/08\";i:62316483;s:65:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/2021/09\";i:135520245;s:62:\"/home2/church/michaelblakemenswear.com/wp-content/uploads/2021\";i:197836728;s:57:\"/home2/church/michaelblakemenswear.com/wp-content/uploads\";i:200265366;}','yes'),(5618,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:0:\"\";s:8:\"features\";a:2:{s:6:\"active\";a:7:{i:0;s:17:\"security-settings\";i:1;s:12:\"advanced-seo\";i:2;s:18:\"upload-video-files\";i:3;s:7:\"akismet\";i:4;s:14:\"send-a-message\";i:5;s:15:\"whatsapp-button\";i:6;s:15:\"social-previews\";}s:9:\"available\";a:28:{s:16:\"google-analytics\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:17:\"security-settings\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:12:\"advanced-seo\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:18:\"upload-video-files\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:13:\"video-hosting\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:7:\"wordads\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:7:\"akismet\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:18:\"vaultpress-backups\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:15:\"simple-payments\";a:10:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:14:\"send-a-message\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:15:\"whatsapp-button\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:15:\"social-previews\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:9:\"donations\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/audio\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:11:\"republicize\";a:14:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:26:\"jetpack_security_t1_yearly\";i:11;s:27:\"jetpack_security_t1_monthly\";i:12;s:26:\"jetpack_security_t2_yearly\";i:13;s:27:\"jetpack_security_t2_monthly\";}s:25:\"premium-content/container\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:16:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:26:\"jetpack_security_t1_yearly\";i:13;s:27:\"jetpack_security_t1_monthly\";i:14;s:26:\"jetpack_security_t2_yearly\";i:15;s:27:\"jetpack_security_t2_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(5622,'wc_connect_services_last_update','1646929643','yes'),(5623,'wc_connect_last_heartbeat','1646929643','yes'),(5624,'wc_connect_services','O:8:\"stdClass\":3:{s:8:\"shipping\";a:2:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"usps\";s:18:\"method_description\";s:52:\"USPS Shipping Rates, Powered by WooCommerce Shipping\";s:12:\"method_title\";s:27:\"USPS (WooCommerce Shipping)\";s:12:\"carrier_name\";s:4:\"USPS\";s:11:\"form_layout\";a:4:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:5:\"Setup\";s:5:\"items\";a:3:{i:0;O:8:\"stdClass\":2:{s:3:\"key\";s:5:\"title\";s:15:\"validation_hint\";s:18:\"Title is required.\";}i:1;O:8:\"stdClass\":2:{s:3:\"key\";s:6:\"origin\";s:15:\"validation_hint\";s:118:\"The zip code of where you are shipping from is required and should be a valid 5 digit or ZIP+4 United States ZIP code.\";}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:16:\"shipping_classes\";s:4:\"type\";s:16:\"shipping_classes\";s:18:\"requiredWcsVersion\";s:9:\">= 1.17.0\";}}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:5:\"Rates\";s:5:\"items\";a:5:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"services\";s:4:\"type\";s:17:\"shipping_services\";s:15:\"validation_hint\";s:28:\"Select at least one service.\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:11:\"rate_filter\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:3:\"all\";s:50:\"Show all available rates and let customers choose.\";s:8:\"cheapest\";s:28:\"Only show the cheapest rate.\";}}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:13:\"fallback_rate\";s:15:\"validation_hint\";s:42:\"Fallback rate should be a positive number.\";s:11:\"placeholder\";s:11:\"Rate amount\";}i:3;O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"rate_class\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:6:\"retail\";s:38:\"Retail — Standard post office rates.\";s:3:\"cbp\";s:44:\"Commercial — Discounted post office rates.\";}}i:4;O:8:\"stdClass\":3:{s:3:\"key\";s:19:\"shipping_learn_more\";s:4:\"type\";s:4:\"text\";s:11:\"description\";s:153:\"<a href=\"https://docs.woocommerce.com/document/woocommerce-services/#section-4\" target=\"_blank\">Learn more</a> about available shipping rates and prices.\";}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:9:\"Packaging\";s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"packing_method\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:8:\"by_price\";s:52:\"Pack items together, in as few packages as possible.\";s:10:\"individual\";s:53:\"Ship items individually, in their original packaging.\";}}i:1;O:8:\"stdClass\":2:{s:3:\"key\";s:5:\"boxes\";s:4:\"type\";s:8:\"packages\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"actions\";s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"submit\";s:5:\"title\";s:12:\"Save changes\";}}}}s:16:\"service_settings\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"object\";s:5:\"title\";s:4:\"USPS\";s:11:\"description\";s:84:\"The USPS extension obtains rates dynamically from the USPS API during cart/checkout.\";s:8:\"required\";a:3:{i:0;s:5:\"title\";i:1;s:6:\"origin\";i:2;s:8:\"services\";}s:11:\"definitions\";O:8:\"stdClass\":2:{s:16:\"shipping_service\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:8:\"services\";a:57:{i:0;O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"pri\";s:4:\"name\";s:20:\"USPS - Priority Mail\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"pri_flat_env\";s:4:\"name\";s:41:\"USPS - Priority Mail - Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:13:\"flat_envelope\";}i:2;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"pri_large_flat_box\";s:4:\"name\";s:52:\"USPS - Priority Mail - Large Flat Rate Box (12x12x5)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:14:\"large_flat_box\";}i:3;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_large_flat_box_2\";s:4:\"name\";s:52:\"USPS - Priority Mail - Large Flat Rate Box (23x11x3)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:16:\"large_flat_box_2\";}i:4;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"pri_legal_flat_env\";s:4:\"name\";s:47:\"USPS - Priority Mail - Legal Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:19:\"legal_flat_envelope\";}i:5;O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"pri_medium_flat_box_top\";s:4:\"name\";s:57:\"USPS - Priority Mail - Medium Flat Rate Box (Top Loading)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:19:\"medium_flat_box_top\";}i:6;O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"pri_medium_flat_box_side\";s:4:\"name\";s:58:\"USPS - Priority Mail - Medium Flat Rate Box (Side Loading)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:20:\"medium_flat_box_side\";}i:7;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_sm_flat_box\";s:4:\"name\";s:42:\"USPS - Priority Mail - Small Flat Rate Box\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:14:\"small_flat_box\";}i:8;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"pri_padded_flat_env\";s:4:\"name\";s:48:\"USPS - Priority Mail - Padded Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:20:\"padded_flat_envelope\";}i:9;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"pri_small_flat_env\";s:4:\"name\";s:47:\"USPS - Priority Mail - Small Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:19:\"small_flat_envelope\";}i:10;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_window_flat\";s:4:\"name\";s:48:\"USPS - Priority Mail - Window Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:20:\"window_flat_envelope\";}i:11;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_a1\";s:4:\"name\";s:43:\"USPS - Priority Mail - Regional Rate Box A1\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_a1\";}i:12;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_a2\";s:4:\"name\";s:43:\"USPS - Priority Mail - Regional Rate Box A2\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_a2\";}i:13;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_b1\";s:4:\"name\";s:43:\"USPS - Priority Mail - Regional Rate Box B1\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_b1\";}i:14;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_b2\";s:4:\"name\";s:43:\"USPS - Priority Mail - Regional Rate Box B2\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_b2\";}i:15;O:8:\"stdClass\":5:{s:2:\"id\";s:7:\"pri_exp\";s:4:\"name\";s:28:\"USPS - Priority Mail Express\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";}i:16;O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"pri_exp_flat_env\";s:4:\"name\";s:49:\"USPS - Priority Mail Express - Flat Rate Envelope\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";s:18:\"predefined_package\";s:21:\"express_flat_envelope\";}i:17;O:8:\"stdClass\":6:{s:2:\"id\";s:22:\"pri_exp_legal_flat_env\";s:4:\"name\";s:55:\"USPS - Priority Mail Express - Legal Flat Rate Envelope\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";s:18:\"predefined_package\";s:27:\"express_legal_flat_envelope\";}i:18;O:8:\"stdClass\":5:{s:2:\"id\";s:16:\"pri_exp_military\";s:4:\"name\";s:37:\"USPS - Priority Mail Express Military\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:19;O:8:\"stdClass\":5:{s:2:\"id\";s:24:\"pri_exp_military_holiday\";s:4:\"name\";s:61:\"USPS - Priority Mail Express Military Sunday/Holiday Delivery\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:20;O:8:\"stdClass\":5:{s:2:\"id\";s:25:\"pri_exp_military_flat_env\";s:4:\"name\";s:56:\"USPS - Priority Mail Express Military Flat Rate Envelope\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:21;O:8:\"stdClass\":5:{s:2:\"id\";s:33:\"pri_exp_military_flat_env_holiday\";s:4:\"name\";s:80:\"USPS - Priority Mail Express Military Flat Rate Envelope Sunday/Holiday Delivery\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:22;O:8:\"stdClass\":5:{s:2:\"id\";s:31:\"pri_exp_military_legal_flat_env\";s:4:\"name\";s:62:\"USPS - Priority Mail Express Military Legal Flat Rate Envelope\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:23;O:8:\"stdClass\":5:{s:2:\"id\";s:39:\"pri_exp_military_legal_flat_env_holiday\";s:4:\"name\";s:86:\"USPS - Priority Mail Express Military Legal Flat Rate Envelope Sunday/Holiday Delivery\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:24;O:8:\"stdClass\":5:{s:2:\"id\";s:32:\"pri_exp_military_padded_flat_env\";s:4:\"name\";s:63:\"USPS - Priority Mail Express Military Padded Flat Rate Envelope\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:25;O:8:\"stdClass\":5:{s:2:\"id\";s:40:\"pri_exp_military_padded_flat_env_holiday\";s:4:\"name\";s:87:\"USPS - Priority Mail Express Military Padded Flat Rate Envelope Sunday/Holiday Delivery\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:26;O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"pri_exp_padded_flat_env\";s:4:\"name\";s:56:\"USPS - Priority Mail Express - Padded Flat Rate Envelope\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";s:18:\"predefined_package\";s:28:\"express_padded_flat_envelope\";}i:27;O:8:\"stdClass\":5:{s:2:\"id\";s:19:\"first_class_stamped\";s:4:\"name\";s:40:\"USPS - First-Class Mail - Stamped Letter\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:28;O:8:\"stdClass\":5:{s:2:\"id\";s:19:\"first_class_metered\";s:4:\"name\";s:40:\"USPS - First-Class Mail - Metered Letter\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:29;O:8:\"stdClass\":5:{s:2:\"id\";s:18:\"first_class_parcel\";s:4:\"name\";s:32:\"USPS - First-Class Mail - Parcel\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:30;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_lg_postcard\";s:4:\"name\";s:41:\"USPS - First-Class Mail - Large Postcards\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:31;O:8:\"stdClass\":5:{s:2:\"id\";s:20:\"first_class_postcard\";s:4:\"name\";s:35:\"USPS - First-Class Mail - Postcards\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:32;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_lg_env_flat\";s:4:\"name\";s:40:\"USPS - First-Class Mail - Large Envelope\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:33;O:8:\"stdClass\":5:{s:2:\"id\";s:19:\"first_class_package\";s:4:\"name\";s:34:\"USPS - First-Class Package Service\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:34;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_intl_letter\";s:4:\"name\";s:46:\"USPS - First-Class Mail - International Letter\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:35;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_intl_lg_env\";s:4:\"name\";s:54:\"USPS - First-Class Mail - International Large Envelope\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:36;O:8:\"stdClass\":5:{s:2:\"id\";s:16:\"first_class_intl\";s:4:\"name\";s:48:\"USPS - First-Class Package International Service\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:37;O:8:\"stdClass\":5:{s:2:\"id\";s:13:\"retail_ground\";s:4:\"name\";s:25:\"USPS - USPS Retail Ground\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:38;O:8:\"stdClass\":5:{s:2:\"id\";s:20:\"parcel_select_ground\";s:4:\"name\";s:27:\"USPS - Parcel Select Ground\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:39;O:8:\"stdClass\":5:{s:2:\"id\";s:5:\"media\";s:4:\"name\";s:24:\"USPS - Media Mail Parcel\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:40;O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"gxg\";s:4:\"name\";s:49:\"USPS - USPS Global Express Guaranteed - Envelopes\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:41;O:8:\"stdClass\":5:{s:2:\"id\";s:12:\"pri_exp_intl\";s:4:\"name\";s:42:\"USPS - Priority Mail Express International\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";}i:42;O:8:\"stdClass\":6:{s:2:\"id\";s:21:\"pri_exp_intl_env_flat\";s:4:\"name\";s:64:\"USPS - Priority Mail Express International - Flat Rate Envelope\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";s:18:\"predefined_package\";s:21:\"express_flat_envelope\";}i:43;O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"pri_exp_intl_legal_flat\";s:4:\"name\";s:69:\"USPS - Priority Mail Express International - Legal Flat Rate Envelope\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";s:18:\"predefined_package\";s:27:\"express_legal_flat_envelope\";}i:44;O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"pri_exp_intl_padded_flat\";s:4:\"name\";s:70:\"USPS - Priority Mail Express International - Padded Flat Rate Envelope\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";s:18:\"predefined_package\";s:28:\"express_padded_flat_envelope\";}i:45;O:8:\"stdClass\":5:{s:2:\"id\";s:8:\"pri_intl\";s:4:\"name\";s:34:\"USPS - Priority Mail International\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";}i:46;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_intl_lg_box\";s:4:\"name\";s:56:\"USPS - Priority Mail International - Large Flat Rate Box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:14:\"large_flat_box\";}i:47;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"pri_intl_md_box_top\";s:4:\"name\";s:71:\"USPS - Priority Mail International - Medium Flat Rate Box (Top Loading)\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:19:\"medium_flat_box_top\";}i:48;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_md_box_side\";s:4:\"name\";s:72:\"USPS - Priority Mail International - Medium Flat Rate Box (Side Loading)\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:20:\"medium_flat_box_side\";}i:49;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_intl_sm_box\";s:4:\"name\";s:56:\"USPS - Priority Mail International - Small Flat Rate Box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:14:\"small_flat_box\";}i:50;O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"pri_intl_dvd\";s:4:\"name\";s:61:\"USPS - Priority Mail International - DVD Flat Rate priced box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:8:\"dvd_flat\";}i:51;O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"pri_intl_video\";s:4:\"name\";s:69:\"USPS - Priority Mail International - Large Video Flat Rate priced box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:16:\"large_video_flat\";}i:52;O:8:\"stdClass\":6:{s:2:\"id\";s:17:\"pri_intl_env_flat\";s:4:\"name\";s:55:\"USPS - Priority Mail International - Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:13:\"flat_envelope\";}i:53;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"pri_intl_legal_flat\";s:4:\"name\";s:61:\"USPS - Priority Mail International - Legal Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:19:\"legal_flat_envelope\";}i:54;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_padded_flat\";s:4:\"name\";s:62:\"USPS - Priority Mail International - Padded Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:20:\"padded_flat_envelope\";}i:55;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_sm_env_flat\";s:4:\"name\";s:61:\"USPS - Priority Mail International - Small Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:19:\"small_flat_envelope\";}i:56;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_window_flat\";s:4:\"name\";s:62:\"USPS - Priority Mail International - Window Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:20:\"window_flat_envelope\";}}}s:10:\"properties\";O:8:\"stdClass\":9:{s:5:\"title\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:21:\"Shipping method title\";s:7:\"default\";s:4:\"USPS\";s:9:\"minLength\";i:1;}s:10:\"account_id\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:12:\"USPS Account\";s:11:\"description\";s:117:\"Use the account provided or <a href=\"https://registration.shippingapis.com/\" target=\"_blank\">sign up for your own</a>\";s:7:\"default\";s:0:\"\";s:9:\"minLength\";i:0;}s:6:\"origin\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:15:\"Origin ZIP Code\";s:11:\"description\";s:28:\"Where are you shipping from?\";s:7:\"default\";s:5:\"72113\";s:7:\"pattern\";s:18:\"^\\d{5}(?:-\\d{4})?$\";}s:16:\"shipping_classes\";O:8:\"stdClass\":4:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:16:\"Shipping Classes\";s:11:\"description\";s:60:\"Do you need to limit the shipping method to certain classes?\";s:7:\"default\";a:0:{}}s:8:\"services\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"object\";s:10:\"definition\";s:8:\"services\";s:5:\"title\";s:8:\"Services\";s:11:\"description\";s:146:\"Which <a target=\"_blank\" href=\"https://www.usps.com/ship/mail-shipping-services.htm\">shipping services</a> do you want to offer to your customers?\";s:5:\"items\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:10:\"properties\";O:8:\"stdClass\":57:{s:3:\"pri\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:3:\"pri\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:12:\"pri_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:12:\"pri_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"pri_large_flat_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"pri_large_flat_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_large_flat_box_2\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_large_flat_box_2\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"pri_legal_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"pri_legal_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"pri_medium_flat_box_top\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"pri_medium_flat_box_top\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:24:\"pri_medium_flat_box_side\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:24:\"pri_medium_flat_box_side\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_sm_flat_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_sm_flat_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"pri_padded_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"pri_padded_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"pri_small_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"pri_small_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_window_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_window_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_a1\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_a1\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_a2\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_a2\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_b1\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_b1\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_b2\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_b2\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:7:\"pri_exp\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:7:\"pri_exp\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:16:\"pri_exp_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:16:\"pri_exp_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:22:\"pri_exp_legal_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:22:\"pri_exp_legal_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:16:\"pri_exp_military\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:16:\"pri_exp_military\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:24:\"pri_exp_military_holiday\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:24:\"pri_exp_military_holiday\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:25:\"pri_exp_military_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:25:\"pri_exp_military_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:33:\"pri_exp_military_flat_env_holiday\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:33:\"pri_exp_military_flat_env_holiday\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:31:\"pri_exp_military_legal_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:31:\"pri_exp_military_legal_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:39:\"pri_exp_military_legal_flat_env_holiday\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:39:\"pri_exp_military_legal_flat_env_holiday\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:32:\"pri_exp_military_padded_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:32:\"pri_exp_military_padded_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:40:\"pri_exp_military_padded_flat_env_holiday\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:40:\"pri_exp_military_padded_flat_env_holiday\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"pri_exp_padded_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"pri_exp_padded_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"first_class_stamped\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"first_class_stamped\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"first_class_metered\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"first_class_metered\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"first_class_parcel\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"first_class_parcel\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_lg_postcard\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_lg_postcard\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"first_class_postcard\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"first_class_postcard\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_lg_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_lg_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"first_class_package\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"first_class_package\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_intl_letter\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_intl_letter\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_intl_lg_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_intl_lg_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:16:\"first_class_intl\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:16:\"first_class_intl\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:13:\"retail_ground\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:13:\"retail_ground\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"parcel_select_ground\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"parcel_select_ground\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:5:\"media\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:5:\"media\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:3:\"gxg\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:3:\"gxg\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:12:\"pri_exp_intl\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:12:\"pri_exp_intl\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:21:\"pri_exp_intl_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:21:\"pri_exp_intl_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"pri_exp_intl_legal_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"pri_exp_intl_legal_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:24:\"pri_exp_intl_padded_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:24:\"pri_exp_intl_padded_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:8:\"pri_intl\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:8:\"pri_intl\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_intl_lg_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_intl_lg_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"pri_intl_md_box_top\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"pri_intl_md_box_top\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_md_box_side\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_md_box_side\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_intl_sm_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_intl_sm_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:12:\"pri_intl_dvd\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:12:\"pri_intl_dvd\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:14:\"pri_intl_video\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:14:\"pri_intl_video\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:17:\"pri_intl_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:17:\"pri_intl_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"pri_intl_legal_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"pri_intl_legal_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_padded_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_padded_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_sm_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_sm_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_window_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_window_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}}}s:13:\"fallback_rate\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:20:\"Fallback Rate (in $)\";s:11:\"description\";s:148:\"If USPS returns no rates, offer the customer a fallback rate so they are still able to checkout. Leave this field as 0 to indicate no fallback rate.\";s:7:\"default\";i:0;s:7:\"minimum\";i:0;}s:11:\"rate_filter\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:35:\"Which rates would you like to show?\";s:4:\"enum\";a:2:{i:0;s:3:\"all\";i:1;s:8:\"cheapest\";}s:7:\"default\";s:3:\"all\";}s:10:\"rate_class\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:36:\"What price would you like to charge?\";s:4:\"enum\";a:2:{i:0;s:6:\"retail\";i:1;s:3:\"cbp\";}s:7:\"default\";s:6:\"retail\";}s:14:\"packing_method\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:14:\"Packing Method\";s:4:\"enum\";a:2:{i:0;s:8:\"by_price\";i:1;s:10:\"individual\";}s:7:\"default\";s:8:\"by_price\";}}}s:8:\"packages\";O:8:\"stdClass\":6:{s:14:\"pri_flat_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:34:\"USPS Priority Mail Flat Rate Boxes\";s:11:\"definitions\";a:7:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"21.91 x 13.65 x 4.13\";s:16:\"outer_dimensions\";s:20:\"21.91 x 13.65 x 4.13\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:14:\"small_flat_box\";s:4:\"name\";s:19:\"Small Flat Rate Box\";s:10:\"dimensions\";s:20:\"21.91 x 13.65 x 4.13\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:21:\"27.94 x 21.59 x 13.97\";s:16:\"outer_dimensions\";s:21:\"28.57 x 22.22 x 15.24\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:19:\"medium_flat_box_top\";s:4:\"name\";s:35:\"Medium Flat Rate Box 1, Top Loading\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:21:\"27.94 x 21.59 x 13.97\";s:5:\"outer\";s:21:\"28.57 x 22.22 x 15.24\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"34.61 x 30.16 x 8.57\";s:16:\"outer_dimensions\";s:20:\"35.56 x 30.48 x 8.89\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:20:\"medium_flat_box_side\";s:4:\"name\";s:36:\"Medium Flat Rate Box 2, Side Loading\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"34.61 x 30.16 x 8.57\";s:5:\"outer\";s:20:\"35.56 x 30.48 x 8.89\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:21:\"30.48 x 30.48 x 13.97\";s:16:\"outer_dimensions\";s:21:\"31.11 x 31.11 x 15.24\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:14:\"large_flat_box\";s:4:\"name\";s:19:\"Large Flat Rate Box\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:21:\"30.48 x 30.48 x 13.97\";s:5:\"outer\";s:21:\"31.11 x 31.11 x 15.24\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"60.16 x 29.84 x 7.62\";s:16:\"outer_dimensions\";s:20:\"61.12 x 30.16 x 7.94\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:16:\"large_flat_box_2\";s:4:\"name\";s:30:\"Large Flat Rate Board Game Box\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"60.16 x 29.84 x 7.62\";s:5:\"outer\";s:20:\"61.12 x 30.16 x 7.94\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"19.21 x 13.81 x 1.59\";s:16:\"outer_dimensions\";s:20:\"19.21 x 13.81 x 1.59\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:8:\"dvd_flat\";s:4:\"name\";s:34:\"DVD Flat Rate (International Only)\";s:10:\"dimensions\";s:20:\"19.21 x 13.81 x 1.59\";s:10:\"max_weight\";d:1.810000000000000053290705182007513940334320068359375;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:6;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"23.49 x 15.87 x 5.08\";s:16:\"outer_dimensions\";s:20:\"23.49 x 15.87 x 5.08\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:16:\"large_video_flat\";s:4:\"name\";s:50:\"1096L - Large Video Flat Rate (International Only)\";s:10:\"dimensions\";s:20:\"23.49 x 15.87 x 5.08\";s:10:\"max_weight\";d:1.810000000000000053290705182007513940334320068359375;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}}}s:13:\"pri_envelopes\";O:8:\"stdClass\":2:{s:5:\"title\";s:38:\"USPS Priority Mail Flat Rate Envelopes\";s:11:\"definitions\";a:5:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:13:\"flat_envelope\";s:4:\"name\";s:18:\"Flat Rate Envelope\";s:10:\"dimensions\";a:1:{i:0;s:20:\"31.75 x 24.13 x 1.27\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:19:\"38.1 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:19:\"38.1 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:19:\"legal_flat_envelope\";s:4:\"name\";s:24:\"Legal Flat Rate Envelope\";s:10:\"dimensions\";a:1:{i:0;s:19:\"38.1 x 24.13 x 1.27\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:20:\"padded_flat_envelope\";s:4:\"name\";s:25:\"Padded Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:20:\"31.75 x 24.13 x 1.27\";i:1;s:20:\"31.75 x 19.05 x 3.81\";i:2;s:20:\"31.75 x 13.97 x 6.35\";i:3;s:19:\"31.75 x 8.89 x 8.89\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:20:\"window_flat_envelope\";s:4:\"name\";s:40:\"Window Flat Rate Envelope (12.5\" x 9.5\")\";s:10:\"dimensions\";a:1:{i:0;s:20:\"31.75 x 24.13 x 1.27\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:19:\"25.4 x 15.24 x 1.27\";s:16:\"outer_dimensions\";s:19:\"25.4 x 15.24 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:19:\"small_flat_envelope\";s:4:\"name\";s:24:\"Small Flat Rate Envelope\";s:10:\"dimensions\";a:1:{i:0;s:19:\"25.4 x 15.24 x 1.27\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}}}s:9:\"pri_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:24:\"USPS Priority Mail Boxes\";s:11:\"definitions\";a:10:{i:0;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:21:\"95.72 x 15.56 x 12.86\";s:16:\"outer_dimensions\";s:21:\"95.72 x 15.56 x 12.86\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:11:\"medium_tube\";s:4:\"name\";s:25:\"Priority Mail Medium Tube\";s:10:\"dimensions\";s:21:\"95.72 x 15.56 x 12.86\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"63.5 x 15.24 x 14.92\";s:16:\"outer_dimensions\";s:20:\"63.5 x 15.24 x 14.92\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"small_tube\";s:4:\"name\";s:24:\"Priority Mail Small Tube\";s:10:\"dimensions\";s:20:\"63.5 x 15.24 x 14.92\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:21:\"19.05 x 13.02 x 36.51\";s:16:\"outer_dimensions\";s:21:\"19.05 x 13.02 x 36.51\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:8:\"shoe_box\";s:4:\"name\";s:22:\"Priority Mail Shoe Box\";s:10:\"dimensions\";s:21:\"19.05 x 13.02 x 36.51\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:21:\"17.78 x 17.78 x 15.24\";s:16:\"outer_dimensions\";s:21:\"17.78 x 17.78 x 15.24\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"priority_4\";s:4:\"name\";s:21:\"Priority Mail Box - 4\";s:10:\"dimensions\";s:21:\"17.78 x 17.78 x 15.24\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:21:\"30.48 x 30.48 x 20.32\";s:16:\"outer_dimensions\";s:21:\"30.48 x 30.48 x 20.32\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"priority_7\";s:4:\"name\";s:21:\"Priority Mail Box - 7\";s:10:\"dimensions\";s:21:\"30.48 x 30.48 x 20.32\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"38.73 x 31.43 x 7.62\";s:16:\"outer_dimensions\";s:20:\"39.69 x 31.59 x 7.94\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"priority_1095\";s:4:\"name\";s:24:\"Priority Mail Box - 1095\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"38.73 x 31.43 x 7.62\";s:5:\"outer\";s:20:\"39.69 x 31.59 x 7.94\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:6;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"23.49 x 15.87 x 5.08\";s:16:\"outer_dimensions\";s:20:\"24.29 x 16.35 x 5.56\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:14:\"priority_1096L\";s:4:\"name\";s:25:\"Priority Mail Box - 1096L\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"23.49 x 15.87 x 5.08\";s:5:\"outer\";s:20:\"24.29 x 16.35 x 5.56\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:7;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"29.21 x 33.34 x 6.03\";s:16:\"outer_dimensions\";s:20:\"29.53 x 34.13 x 6.35\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"priority_1097\";s:4:\"name\";s:24:\"Priority Mail Box - 1097\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"29.21 x 33.34 x 6.03\";s:5:\"outer\";s:20:\"29.53 x 34.13 x 6.35\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:8;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"19.21 x 13.81 x 1.59\";s:16:\"outer_dimensions\";s:20:\"19.21 x 13.81 x 1.59\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:12:\"priority_dvd\";s:4:\"name\";s:21:\"Priority Mail DVD Box\";s:10:\"dimensions\";s:20:\"19.21 x 13.81 x 1.59\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:9;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"29.53 x 38.42 x 1.27\";s:16:\"outer_dimensions\";s:20:\"29.53 x 38.42 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:23:\"priority_tyvek_envelope\";s:4:\"name\";s:28:\"Priority Mail Tyvek Envelope\";s:10:\"dimensions\";s:20:\"29.53 x 38.42 x 1.27\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}}}s:21:\"pri_express_envelopes\";O:8:\"stdClass\":2:{s:5:\"title\";s:46:\"USPS Priority Mail Express Flat Rate Envelopes\";s:11:\"definitions\";a:3:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:21:\"express_flat_envelope\";s:4:\"name\";s:18:\"Flat Rate Envelope\";s:10:\"dimensions\";a:1:{i:0;s:20:\"31.75 x 24.13 x 1.27\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:21:\"pri_express_envelopes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:19:\"38.1 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:19:\"38.1 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:27:\"express_legal_flat_envelope\";s:4:\"name\";s:24:\"Legal Flat Rate Envelope\";s:10:\"dimensions\";a:1:{i:0;s:19:\"38.1 x 24.13 x 1.27\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:21:\"pri_express_envelopes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:16:\"outer_dimensions\";s:20:\"31.75 x 24.13 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:28:\"express_padded_flat_envelope\";s:4:\"name\";s:25:\"Padded Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:20:\"31.75 x 24.13 x 1.27\";i:1;s:20:\"31.75 x 19.05 x 3.81\";i:2;s:20:\"31.75 x 13.97 x 6.35\";i:3;s:19:\"31.75 x 8.89 x 8.89\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:21:\"pri_express_envelopes\";s:22:\"can_ship_international\";b:1;}}}s:17:\"pri_express_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:32:\"USPS Priority Mail Express Boxes\";s:11:\"definitions\";a:7:{i:0;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"38.73 x 31.43 x 7.62\";s:16:\"outer_dimensions\";s:20:\"39.69 x 31.59 x 7.94\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:11:\"express_box\";s:4:\"name\";s:25:\"Priority Mail Express Box\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"38.73 x 31.43 x 7.62\";s:5:\"outer\";s:20:\"39.69 x 31.59 x 7.94\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:21:\"27.94 x 21.59 x 13.97\";s:16:\"outer_dimensions\";s:21:\"28.57 x 22.22 x 15.24\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"express_box_1\";s:4:\"name\";s:27:\"Priority Mail Express Box 1\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:21:\"27.94 x 21.59 x 13.97\";s:5:\"outer\";s:21:\"28.57 x 22.22 x 15.24\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"30.16 x 8.57 x 34.61\";s:16:\"outer_dimensions\";s:20:\"30.48 x 8.89 x 35.56\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"express_box_2\";s:4:\"name\";s:27:\"Priority Mail Express Box 2\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"30.16 x 8.57 x 34.61\";s:5:\"outer\";s:20:\"30.48 x 8.89 x 35.56\";}s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:21:\"95.72 x 15.56 x 12.86\";s:16:\"outer_dimensions\";s:21:\"95.72 x 15.56 x 12.86\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:19:\"express_medium_tube\";s:4:\"name\";s:33:\"Priority Mail Express Medium Tube\";s:10:\"dimensions\";s:21:\"95.72 x 15.56 x 12.86\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"63.5 x 15.24 x 14.92\";s:16:\"outer_dimensions\";s:20:\"63.5 x 15.24 x 14.92\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:18:\"express_small_tube\";s:4:\"name\";s:32:\"Priority Mail Express Small Tube\";s:10:\"dimensions\";s:20:\"63.5 x 15.24 x 14.92\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"29.53 x 38.42 x 1.27\";s:16:\"outer_dimensions\";s:20:\"29.53 x 38.42 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:22:\"express_tyvek_envelope\";s:4:\"name\";s:36:\"Priority Mail Express Tyvek Envelope\";s:10:\"dimensions\";s:20:\"29.53 x 38.42 x 1.27\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:6;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:19:\"14.92 x 25.4 x 1.27\";s:16:\"outer_dimensions\";s:19:\"14.92 x 25.4 x 1.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:23:\"express_window_envelope\";s:4:\"name\";s:37:\"Priority Mail Express Window Envelope\";s:10:\"dimensions\";s:19:\"14.92 x 25.4 x 1.27\";s:10:\"max_weight\";d:31.75;s:9:\"is_letter\";b:1;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}}}s:18:\"pri_regional_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:38:\"USPS Priority Mail Regional Rate Boxes\";s:11:\"definitions\";a:4:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:19:\"25.72 x 18.1 x 12.7\";s:16:\"outer_dimensions\";s:19:\"25.72 x 18.1 x 12.7\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_a1\";s:4:\"name\";s:20:\"Regional Rate Box A1\";s:10:\"dimensions\";s:19:\"25.72 x 18.1 x 12.7\";s:10:\"max_weight\";d:6.79999999999999982236431605997495353221893310546875;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:18:\"pri_regional_boxes\";s:22:\"can_ship_international\";b:0;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:19:\"28.1 x 6.35 x 33.18\";s:16:\"outer_dimensions\";s:19:\"28.1 x 6.35 x 33.18\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_a2\";s:4:\"name\";s:20:\"Regional Rate Box A2\";s:10:\"dimensions\";s:19:\"28.1 x 6.35 x 33.18\";s:10:\"max_weight\";d:6.79999999999999982236431605997495353221893310546875;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:18:\"pri_regional_boxes\";s:22:\"can_ship_international\";b:0;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:21:\"31.11 x 26.67 x 13.97\";s:16:\"outer_dimensions\";s:21:\"31.11 x 26.67 x 13.97\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_b1\";s:4:\"name\";s:20:\"Regional Rate Box B1\";s:10:\"dimensions\";s:21:\"31.11 x 26.67 x 13.97\";s:10:\"max_weight\";d:9.07000000000000028421709430404007434844970703125;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:18:\"pri_regional_boxes\";s:22:\"can_ship_international\";b:0;}i:3;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"36.83 x 7.62 x 41.27\";s:16:\"outer_dimensions\";s:20:\"36.83 x 7.62 x 41.27\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_b2\";s:4:\"name\";s:20:\"Regional Rate Box B2\";s:10:\"dimensions\";s:20:\"36.83 x 7.62 x 41.27\";s:10:\"max_weight\";d:9.07000000000000028421709430404007434844970703125;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:18:\"pri_regional_boxes\";s:22:\"can_ship_international\";b:0;}}}}}i:1;O:8:\"stdClass\":7:{s:11:\"form_layout\";a:4:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:5:\"Setup\";s:5:\"items\";a:3:{i:0;O:8:\"stdClass\":2:{s:3:\"key\";s:5:\"title\";s:15:\"validation_hint\";s:18:\"Title is required.\";}i:1;O:8:\"stdClass\":2:{s:3:\"key\";s:6:\"origin\";s:15:\"validation_hint\";s:118:\"The zip code of where you are shipping from is required and should be a valid 5 digit or ZIP+4 United States ZIP code.\";}i:2;O:8:\"stdClass\":2:{s:3:\"key\";s:16:\"shipping_classes\";s:4:\"type\";s:16:\"shipping_classes\";}}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:5:\"Rates\";s:5:\"items\";a:3:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"services\";s:4:\"type\";s:17:\"shipping_services\";s:15:\"validation_hint\";s:28:\"Select at least one service.\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:11:\"rate_filter\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:3:\"all\";s:50:\"Show all available rates and let customers choose.\";s:8:\"cheapest\";s:28:\"Only show the cheapest rate.\";}}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:13:\"fallback_rate\";s:15:\"validation_hint\";s:42:\"Fallback rate should be a positive number.\";s:11:\"placeholder\";s:11:\"Rate amount\";}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:9:\"Packaging\";s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"packing_method\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:8:\"by_price\";s:52:\"Pack items together, in as few packages as possible.\";s:10:\"individual\";s:53:\"Ship items individually, in their original packaging.\";}}i:1;O:8:\"stdClass\":2:{s:3:\"key\";s:5:\"boxes\";s:4:\"type\";s:8:\"packages\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"actions\";s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"submit\";s:5:\"title\";s:12:\"Save changes\";}}}}s:16:\"service_settings\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"object\";s:8:\"required\";a:3:{i:0;s:5:\"title\";i:1;s:6:\"origin\";i:2;s:8:\"services\";}s:10:\"properties\";O:8:\"stdClass\":8:{s:6:\"origin\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:15:\"Origin ZIP Code\";s:11:\"description\";s:28:\"Where are you shipping from?\";s:7:\"default\";s:5:\"72113\";}s:16:\"shipping_classes\";O:8:\"stdClass\":4:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:16:\"Shipping Classes\";s:11:\"description\";s:60:\"Do you need to limit the shipping method to certain classes?\";s:7:\"default\";a:0:{}}s:13:\"fallback_rate\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:20:\"Fallback Rate (in $)\";s:11:\"description\";s:147:\"If DHL returns no rates, offer the customer a fallback rate so they are still able to checkout. Leave this field as 0 to indicate no fallback rate.\";s:7:\"default\";i:0;s:7:\"minimum\";i:0;}s:11:\"rate_filter\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:35:\"Which rates would you like to show?\";s:4:\"enum\";a:2:{i:0;s:3:\"all\";i:1;s:8:\"cheapest\";}s:7:\"default\";s:3:\"all\";}s:14:\"packing_method\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:14:\"Packing Method\";s:4:\"enum\";a:2:{i:0;s:8:\"by_price\";i:1;s:10:\"individual\";}s:7:\"default\";s:8:\"by_price\";}s:10:\"rate_class\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:36:\"What price would you like to charge?\";s:4:\"enum\";a:2:{i:0;s:6:\"retail\";i:1;s:3:\"cbp\";}s:7:\"default\";s:6:\"retail\";}s:5:\"title\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:21:\"Shipping method title\";s:7:\"default\";s:11:\"DHL Express\";s:9:\"minLength\";i:1;}s:8:\"services\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"object\";s:10:\"definition\";s:8:\"services\";s:5:\"title\";s:8:\"Services\";s:11:\"description\";s:129:\"Which <a target=\"_blank\" href=\"https://www.dhl.com/en/express.html\">shipping services</a> do you want to offer to your customers?\";s:5:\"items\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:10:\"properties\";O:8:\"stdClass\":1:{s:22:\"ExpressWorldwideNonDoc\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:22:\"ExpressWorldwideNonDoc\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}}}}s:5:\"title\";s:11:\"DHL Express\";s:11:\"description\";s:82:\"The DHL extension obtains rates dynamically from the DHL API during cart/checkout.\";s:11:\"definitions\";O:8:\"stdClass\":2:{s:16:\"shipping_service\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:8:\"services\";a:1:{i:0;O:8:\"stdClass\":4:{s:2:\"id\";s:22:\"ExpressWorldwideNonDoc\";s:4:\"name\";s:23:\"DHL - Express Worldwide\";s:5:\"group\";s:17:\"dhl_express_group\";s:10:\"group_name\";s:11:\"DHL Express\";}}}}s:2:\"id\";s:10:\"dhlexpress\";s:18:\"method_description\";s:59:\"DHL Express Shipping Rates, Powered by WooCommerce Shipping\";s:12:\"method_title\";s:34:\"DHL Express (WooCommerce Shipping)\";s:12:\"carrier_name\";s:11:\"DHL Express\";s:8:\"packages\";O:8:\"stdClass\":1:{s:26:\"domestic_and_international\";O:8:\"stdClass\":2:{s:5:\"title\";s:11:\"DHL Express\";s:11:\"definitions\";a:6:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"24.89 x 30.48 x 2.54\";s:16:\"outer_dimensions\";s:20:\"24.89 x 30.48 x 2.54\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:16:\"SmallPaddedPouch\";s:4:\"name\";s:18:\"Small Padded Pouch\";s:10:\"dimensions\";s:20:\"24.89 x 30.48 x 2.54\";s:10:\"max_weight\";d:45.3599999999999994315658113919198513031005859375;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:26:\"domestic_and_international\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"30.22 x 35.56 x 2.54\";s:16:\"outer_dimensions\";s:20:\"30.22 x 35.56 x 2.54\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:16:\"LargePaddedPouch\";s:4:\"name\";s:18:\"Large Padded Pouch\";s:10:\"dimensions\";s:20:\"30.22 x 35.56 x 2.54\";s:10:\"max_weight\";d:45.3599999999999994315658113919198513031005859375;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:26:\"domestic_and_international\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:21:\"25.65 x 14.73 x 14.99\";s:16:\"outer_dimensions\";s:21:\"25.65 x 14.73 x 14.99\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:8:\"Box2Cube\";s:4:\"name\";s:11:\"Box #2 Cube\";s:10:\"dimensions\";s:21:\"25.65 x 14.73 x 14.99\";s:10:\"max_weight\";d:45.3599999999999994315658113919198513031005859375;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:26:\"domestic_and_international\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"31.75 x 28.19 x 3.81\";s:16:\"outer_dimensions\";s:20:\"31.75 x 28.19 x 3.81\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:9:\"Box2Small\";s:4:\"name\";s:12:\"Box #2 Small\";s:10:\"dimensions\";s:20:\"31.75 x 28.19 x 3.81\";s:10:\"max_weight\";d:45.3599999999999994315658113919198513031005859375;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:26:\"domestic_and_international\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:17:\"33.53 x 32 x 5.08\";s:16:\"outer_dimensions\";s:17:\"33.53 x 32 x 5.08\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"Box2Medium\";s:4:\"name\";s:13:\"Box #2 Medium\";s:10:\"dimensions\";s:17:\"33.53 x 32 x 5.08\";s:10:\"max_weight\";d:45.3599999999999994315658113919198513031005859375;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:26:\"domestic_and_international\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"44.45 x 31.75 x 7.62\";s:16:\"outer_dimensions\";s:20:\"44.45 x 31.75 x 7.62\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:9:\"Box3Large\";s:4:\"name\";s:12:\"Box #3 Large\";s:10:\"dimensions\";s:20:\"44.45 x 31.75 x 7.62\";s:10:\"max_weight\";d:45.3599999999999994315658113919198513031005859375;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:26:\"domestic_and_international\";s:22:\"can_ship_international\";b:1;}}}}}}s:5:\"boxes\";O:8:\"stdClass\":5:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:9:\"Box Sizes\";s:11:\"description\";s:240:\"Items will be packed into these boxes based on item dimensions and volume. Outer dimensions will be passed to the delivery service, whereas inner dimensions will be used for packing. Items not fitting into boxes will be packed individually.\";s:7:\"default\";a:0:{}s:5:\"items\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"object\";s:5:\"title\";s:3:\"Box\";s:8:\"required\";a:4:{i:0;s:4:\"name\";i:1;s:16:\"inner_dimensions\";i:2;s:10:\"box_weight\";i:3;s:10:\"max_weight\";}s:10:\"properties\";O:8:\"stdClass\":7:{s:4:\"name\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:4:\"Name\";}s:15:\"is_user_defined\";O:8:\"stdClass\":1:{s:4:\"type\";s:7:\"boolean\";}s:16:\"inner_dimensions\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:28:\"Inner Dimensions (L x W x H)\";s:7:\"pattern\";s:62:\"^(\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+))$\";}s:16:\"outer_dimensions\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:28:\"Outer Dimensions (L x W x H)\";s:7:\"pattern\";s:62:\"^(\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+))$\";}s:10:\"box_weight\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:19:\"Weight of Box (lbs)\";}s:10:\"max_weight\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:16:\"Max Weight (lbs)\";}s:9:\"is_letter\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:6:\"Letter\";}}}}s:7:\"notices\";a:0:{}}','yes'),(6700,'stats_cache','a:2:{s:32:\"e2611cbe4428dfc2cd387f91bc41294e\";a:1:{i:1644165864;a:3:{i:0;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:33:\"https://michaelblakemenswear.com/\";s:5:\"views\";s:1:\"2\";}i:1;a:4:{s:7:\"post_id\";s:2:\"12\";s:10:\"post_title\";s:9:\"Home Page\";s:14:\"post_permalink\";s:33:\"https://michaelblakemenswear.com/\";s:5:\"views\";s:1:\"2\";}i:2;a:4:{s:7:\"post_id\";s:3:\"341\";s:10:\"post_title\";s:12:\"Suede Bomber\";s:14:\"post_permalink\";s:54:\"https://michaelblakemenswear.com/product/suede-bomber/\";s:5:\"views\";s:1:\"2\";}}}s:32:\"402903ff2415d67ca6c003e652cc69f9\";a:1:{i:1644165865;a:0:{}}}','yes'),(6850,'_transient_wcc_is_new_label_user','yes','yes'),(8538,'elementor_controls_usage','a:2:{s:7:\"wp-page\";a:10:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:15;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:10;s:11:\"header_size\";i:1;s:5:\"align\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:5:{s:3:\"gap\";i:1;s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:6:\"layout\";i:5;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:2;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:13:\"image-gallery\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:5:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;s:15:\"gallery_columns\";i:1;s:12:\"gallery_link\";i:1;s:12:\"gallery_rand\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:23:\"elementskit-ninja-forms\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"ekit_ninja_section_tab\";a:1:{s:18:\"ekit_ninja_form_id\";i:2;}}s:5:\"style\";a:1:{s:35:\"ekit_ninja_section_form_title_style\";a:1:{s:28:\"ekit_ninja_heading_alignment\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}s:7:\"wp-post\";a:10:{s:15:\"navigation-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:1:{s:8:\"dropdown\";i:1;}s:12:\"section_menu\";a:1:{s:4:\"menu\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:9:{s:26:\"menu_typography_typography\";i:2;s:27:\"menu_typography_font_family\";i:2;s:27:\"menu_typography_font_weight\";i:2;s:30:\"menu_typography_text_transform\";i:2;s:21:\"color_menu_item_hover\";i:2;s:22:\"color_menu_item_active\";i:2;s:15:\"color_menu_item\";i:2;s:28:\"padding_horizontal_menu_item\";i:1;s:25:\"menu_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:1;}}}}s:9:\"copyright\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:9:\"shortcode\";i:1;s:11:\"title_color\";i:1;s:29:\"caption_typography_typography\";i:1;s:30:\"caption_typography_font_family\";i:1;s:30:\"caption_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:24:\"elementskit-social-media\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:36:\"ekit_socialmedia_section_tab_content\";a:3:{s:27:\"ekit_socialmedai_list_align\";i:1;s:26:\"ekit_socialmedia_add_icons\";i:1;s:34:\"ekit_socialmedai_list_align_mobile\";i:1;}}s:5:\"style\";a:1:{s:34:\"ekit_socialmedia_section_tab_style\";a:2:{s:35:\"ekit_socialmedai_list_border_radius\";i:1;s:28:\"ekit_socialmedai_list_margin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:9:\"site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"section_site_image\";a:2:{s:18:\"site_logo_fallback\";i:1;s:12:\"custom_image\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:17:\"hfe-search-button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:11:\"placeholder\";i:1;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:8:\"hfe-cart\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:12:\"align_mobile\";i:1;}}}}}}','no'),(8540,'elementor_1_elementor_updater_batch_b372f896677b788c84d36751badd','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(8805,'wcpay_menu_badge_hidden','yes','yes'),(9119,'_elementor_editor_upgrade_notice_dismissed','1641918655','yes'),(10358,'jetpack_protect_blocked_attempts','51','no'),(11048,'jp_sync_retry_after_sync','','no'),(12175,'wcpay_account_data','a:2:{s:7:\"account\";a:0:{}s:7:\"expires\";i:1646957267;}','no'),(12343,'wc_connect_taxes_enabled','no','yes'),(12754,'woocommerce_task_list_hidden_lists','a:0:{}','yes'),(16346,'wpsupercache_start','1632690249','yes'),(16347,'wpsupercache_count','0','yes'),(16352,'wpsupercache_gc_time','1646951778','yes'),(16461,'WPLANG','','yes'),(16462,'new_admin_email','ekow@esselwebdesign.com','yes'),(17454,'wpsc_feed_list','a:37:{i:0;s:142:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/wp-cache-fef09c24cc3ed7bb4fcdb9baddff8f22.php\";i:1;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";i:2;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:3;s:146:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/rdf/wp-cache-953b9ff21c0ad1c518e79d6ee7f27a98.php\";i:4;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:5;s:165:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-posts-post-1.xml/wp-cache-5d5500dbf16a4fc4c0b3251638886541.php\";i:6;s:165:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-posts-page-1.xml/wp-cache-b84602fbf5263d72987c934f964342a9.php\";i:7;s:168:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-posts-product-1.xml/wp-cache-cf1bdcf76b33e4b942e80deaa6513d0e.php\";i:8;s:174:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-posts-mailpoet_page-1.xml/wp-cache-ee92654aa8db8f580fd9d453c7c6ff71.php\";i:9;s:173:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-posts-elementor-hf-1.xml/wp-cache-e0adbbfe3790aa211c27f3a4d2d72607.php\";i:10;s:174:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-taxonomies-category-1.xml/wp-cache-390edc64bb4acfa1fe224ea71d67f8dd.php\";i:11;s:177:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-taxonomies-product_cat-1.xml/wp-cache-17b52eeacce6c4c1a49f76ccd7154fc9.php\";i:12;s:160:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap-users-1.xml/wp-cache-ca45160fa72c01da352877daeaf5cdd2.php\";i:13;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";i:14;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:15;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";i:16;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:17;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";i:18;s:156:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/search/1/feed/rss2/wp-cache-811ab174a6bb12b9eaea066cc9e192f8.php\";i:19;s:179:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/product-category/accessories/eyewear/feed/wp-cache-041452f189b5740adbaf825db7107a9f.php\";i:20;s:165:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/product-category/suits/feed/wp-cache-fcb1476f6da2523f62a0143286af305e.php\";i:21;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:22;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:23;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:24;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:25;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:26;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:27;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";i:28;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:29;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";i:30;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:31;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:32;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:33;s:152:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/wp-sitemap.xml/wp-cache-c2168ae92e699a595946ae505a00537a.php\";i:34;s:142:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/wp-cache-fef09c24cc3ed7bb4fcdb9baddff8f22.php\";i:35;s:147:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/feed/atom/wp-cache-02097ad451d9b32a5a172b3022605ef4.php\";i:36;s:151:\"/home2/church/michaelblakemenswear.com/wp-content/cache/supercache/michaelblakemenswear.com/comments/feed/wp-cache-87e658a4fe127be0f04b709a41063cf2.php\";}','yes'),(19757,'woocommerce_wf_shipping_usps_settings','a:18:{s:12:\"usps_wrapper\";s:0:\"\";s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:4:\"USPS\";s:12:\"availability\";s:3:\"all\";s:9:\"countries\";s:0:\"\";s:6:\"origin\";s:5:\"72113\";s:3:\"api\";s:0:\"\";s:7:\"user_id\";s:0:\"\";s:10:\"debug_mode\";s:2:\"no\";s:5:\"rates\";s:0:\"\";s:13:\"shippingrates\";s:6:\"ONLINE\";s:8:\"fallback\";s:0:\"\";s:10:\"flat_rates\";s:0:\"\";s:14:\"standard_rates\";s:0:\"\";s:11:\"offer_rates\";s:3:\"all\";s:8:\"services\";a:11:{s:13:\"D_FIRST_CLASS\";a:8:{s:5:\"order\";s:0:\"\";i:0;a:1:{s:7:\"enabled\";b:0;}i:12;a:1:{s:7:\"enabled\";b:0;}i:15;a:1:{s:7:\"enabled\";b:0;}i:19;a:1:{s:7:\"enabled\";b:0;}i:61;a:1:{s:7:\"enabled\";b:1;}i:78;a:1:{s:7:\"enabled\";b:0;}i:53;a:1:{s:7:\"enabled\";b:1;}}s:14:\"D_EXPRESS_MAIL\";a:4:{s:5:\"order\";s:0:\"\";i:2;a:1:{s:7:\"enabled\";b:1;}i:3;a:1:{s:7:\"enabled\";b:1;}i:23;a:1:{s:7:\"enabled\";b:1;}}s:15:\"D_STANDARD_POST\";a:2:{s:5:\"order\";s:0:\"\";i:4;a:1:{s:7:\"enabled\";b:0;}}s:12:\"D_MEDIA_MAIL\";a:2:{s:5:\"order\";s:0:\"\";i:6;a:1:{s:7:\"enabled\";b:0;}}s:14:\"D_LIBRARY_MAIL\";a:2:{s:5:\"order\";s:0:\"\";i:7;a:1:{s:7:\"enabled\";b:0;}}s:15:\"D_PRIORITY_MAIL\";a:6:{s:5:\"order\";s:0:\"\";i:1;a:1:{s:7:\"enabled\";b:1;}i:18;a:1:{s:7:\"enabled\";b:0;}i:33;a:1:{s:7:\"enabled\";b:0;}i:47;a:1:{s:7:\"enabled\";b:0;}i:49;a:1:{s:7:\"enabled\";b:0;}}s:14:\"I_EXPRESS_MAIL\";a:2:{s:5:\"order\";s:0:\"\";i:1;a:1:{s:7:\"enabled\";b:0;}}s:15:\"I_PRIORITY_MAIL\";a:2:{s:5:\"order\";s:0:\"\";i:2;a:1:{s:7:\"enabled\";b:0;}}s:16:\"I_GLOBAL_EXPRESS\";a:6:{s:5:\"order\";s:0:\"\";i:4;a:1:{s:7:\"enabled\";b:0;}i:5;a:1:{s:7:\"enabled\";b:0;}i:6;a:1:{s:7:\"enabled\";b:0;}i:7;a:1:{s:7:\"enabled\";b:0;}i:12;a:1:{s:7:\"enabled\";b:0;}}s:13:\"I_FIRST_CLASS\";a:4:{s:5:\"order\";s:0:\"\";i:13;a:1:{s:7:\"enabled\";b:0;}i:14;a:1:{s:7:\"enabled\";b:0;}i:15;a:1:{s:7:\"enabled\";b:0;}}s:11:\"I_POSTCARDS\";a:2:{s:5:\"order\";s:0:\"\";i:21;a:1:{s:7:\"enabled\";b:0;}}}s:21:\"mediamail_restriction\";s:0:\"\";s:9:\"gopremium\";s:0:\"\";}','yes'),(19795,'_elementor_settings_update_time','1633376211','yes'),(19796,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(19797,'elementor_disable_color_schemes','','yes'),(19798,'elementor_disable_typography_schemes','','yes'),(19799,'elementor_notice','','yes'),(19800,'elementor_google_maps_api_key','','yes'),(19801,'elementor_css_print_method','internal','yes'),(19802,'elementor_editor_break_lines','','yes'),(19803,'elementor_unfiltered_files_upload','','yes'),(19804,'elementor_font_display','auto','yes'),(19805,'elementor_load_fa4_shim','yes','yes'),(19806,'elementor_experiment-e_dom_optimization','default','yes'),(19807,'elementor_experiment-e_optimized_assets_loading','default','yes'),(19808,'elementor_experiment-e_optimized_css_loading','default','yes'),(19809,'elementor_experiment-e_font_icon_svg','default','yes'),(19810,'elementor_experiment-a11y_improvements','default','yes'),(19811,'elementor_experiment-e_import_export','default','yes'),(19812,'elementor_experiment-additional_custom_breakpoints','default','yes'),(19813,'elementor_experiment-hello-theme-header-footer','default','yes'),(19814,'elementor_experiment-landing-pages','default','yes'),(19815,'elementor_experiment-elements-color-picker','default','yes'),(19816,'elementor_experiment-admin-top-bar','default','yes'),(19841,'_elementor_global_css','a:7:{s:4:\"time\";i:1633376227;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;b:0;s:3:\"css\";s:55845:\".elementor-widget-heading .elementor-heading-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-button .elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-widget-image-box .elementor-image-box-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-image-box .elementor-image-box-description{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-icon.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon.elementor-view-framed .elementor-icon, .elementor-widget-icon.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-box.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );}.elementor-widget-icon-box.elementor-view-framed .elementor-icon, .elementor-widget-icon-box.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-widget-icon-box .elementor-icon-box-title{color:var( --e-global-color-primary );}.elementor-widget-icon-box .elementor-icon-box-title, .elementor-widget-icon-box .elementor-icon-box-title a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-icon-box .elementor-icon-box-description{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-star-rating .elementor-star-rating__title{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-image-gallery .gallery-item .gallery-caption{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-icon-list .elementor-icon-list-item:not(:last-child):after{border-color:var( --e-global-color-text );}.elementor-widget-icon-list .elementor-icon-list-icon i{color:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-icon-list .elementor-icon-list-text{color:var( --e-global-color-secondary );}.elementor-widget-icon-list .elementor-icon-list-item > .elementor-icon-list-text, .elementor-widget-icon-list .elementor-icon-list-item > a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-counter .elementor-counter-number-wrapper{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-counter .elementor-counter-title{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-progress .elementor-progress-wrapper .elementor-progress-bar{background-color:var( --e-global-color-primary );}.elementor-widget-progress .elementor-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-testimonial .elementor-testimonial-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-testimonial .elementor-testimonial-name{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-testimonial .elementor-testimonial-job{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-tabs .elementor-tab-title, .elementor-widget-tabs .elementor-tab-title a{color:var( --e-global-color-primary );}.elementor-widget-tabs .elementor-tab-title.elementor-active,\n .elementor-widget-tabs .elementor-tab-title.elementor-active a{color:var( --e-global-color-accent );}.elementor-widget-tabs .elementor-tab-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-tabs .elementor-tab-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-accordion .elementor-accordion-icon, .elementor-widget-accordion .elementor-accordion-title{color:var( --e-global-color-primary );}.elementor-widget-accordion .elementor-accordion-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-accordion .elementor-active .elementor-accordion-icon, .elementor-widget-accordion .elementor-active .elementor-accordion-title{color:var( --e-global-color-accent );}.elementor-widget-accordion .elementor-active .elementor-accordion-icon svg{fill:var( --e-global-color-accent );}.elementor-widget-accordion .elementor-accordion-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-accordion .elementor-tab-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-toggle .elementor-toggle-title, .elementor-widget-toggle .elementor-toggle-icon{color:var( --e-global-color-primary );}.elementor-widget-toggle .elementor-toggle-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-toggle .elementor-tab-title.elementor-active a, .elementor-widget-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon{color:var( --e-global-color-accent );}.elementor-widget-toggle .elementor-toggle-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-toggle .elementor-tab-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-alert .elementor-alert-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-alert .elementor-alert-description{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-retina .hfe-retina-image-container .hfe-retina-img{border-color:var( --e-global-color-primary );}.elementor-widget-retina .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-copyright .hfe-copyright-wrapper a, .elementor-widget-copyright .hfe-copyright-wrapper{color:var( --e-global-color-text );}.elementor-widget-copyright .hfe-copyright-wrapper, .elementor-widget-copyright .hfe-copyright-wrapper a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-navigation-menu a.hfe-menu-item, .elementor-widget-navigation-menu a.hfe-sub-menu-item{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item, .elementor-widget-navigation-menu .sub-menu a.hfe-sub-menu-item{color:var( --e-global-color-text );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item:hover,\n .elementor-widget-navigation-menu .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-widget-navigation-menu .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-widget-navigation-menu .menu-item a.hfe-menu-item.highlighted,\n .elementor-widget-navigation-menu .menu-item a.hfe-menu-item:focus{color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:before,\n .elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent .sub-menu .hfe-has-submenu-container a:after{background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:before,\n .elementor-widget-navigation-menu .hfe-pointer__framed .menu-item.parent a.hfe-menu-item:after{border-color:var( --e-global-color-accent );}\n .elementor-widget-navigation-menu .sub-menu li a.hfe-sub-menu-item,\n .elementor-widget-navigation-menu nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-widget-navigation-menu nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-widget-navigation-menu nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-widget-navigation-menu nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-widget-navigation-menu .menu-item a.hfe-menu-item.elementor-button:hover{background-color:var( --e-global-color-accent );}.elementor-widget-page-title .elementor-heading-title, .elementor-widget-page-title .hfe-page-title a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-page-title .hfe-page-title-icon i{color:var( --e-global-color-primary );}.elementor-widget-page-title .hfe-page-title-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-hfe-site-title .elementor-heading-title, .elementor-widget-hfe-site-title .hfe-heading a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-hfe-site-title .hfe-heading-text{color:var( --e-global-color-primary );}.elementor-widget-hfe-site-title .hfe-icon i{color:var( --e-global-color-primary );}.elementor-widget-hfe-site-title .hfe-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-hfe-site-tagline .hfe-site-tagline{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );color:var( --e-global-color-secondary );}.elementor-widget-hfe-site-tagline .hfe-icon i{color:var( --e-global-color-primary );}.elementor-widget-hfe-site-tagline .hfe-icon svg{fill:var( --e-global-color-primary );}.elementor-widget-site-logo .hfe-site-logo-container .hfe-site-logo-img{border-color:var( --e-global-color-primary );}.elementor-widget-site-logo .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-hfe-search-button input[type=\"search\"].hfe-search-form__input,.elementor-widget-hfe-search-button .hfe-search-icon-toggle{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-hfe-search-button .hfe-search-form__input{color:var( --e-global-color-text );}.elementor-widget-hfe-search-button .hfe-search-form__input::placeholder{color:var( --e-global-color-text );}.elementor-widget-hfe-search-button .hfe-search-form__container, .elementor-widget-hfe-search-button .hfe-search-icon-toggle .hfe-search-form__input,.elementor-widget-hfe-search-button .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-color:var( --e-global-color-primary );}.elementor-widget-hfe-search-button .hfe-search-form__input:focus::placeholder{color:var( --e-global-color-text );}.elementor-widget-hfe-search-button .hfe-search-form__container button#clear-with-button,\n .elementor-widget-hfe-search-button .hfe-search-form__container button#clear,\n .elementor-widget-hfe-search-button .hfe-search-icon-toggle button#clear{color:var( --e-global-color-text );}.elementor-widget-hfe-cart .hfe-menu-cart__toggle .elementor-button{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-text-path{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-addon-banner .premium-banner-ib-desc .premium_banner_title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-banner .premium-banner .premium_banner_content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-addon-banner .premium-banner .premium-banner-link{color:var( --e-global-color-text );}.elementor-widget-premium-addon-banner .premium-banner .premium-banner-link:hover{color:var( --e-global-color-text );}.elementor-widget-premium-addon-banner .premium-banner-link{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-addon-blog .premium-blog-filters-container li a.category{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-blog .premium-blog-filters-container li a.category span{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog .premium-blog-filters-container li a.active span{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-blog .premium-blog-filters-container li a.active{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog .premium-blog-post-link:before, .elementor-widget-premium-addon-blog .premium-blog-post-link:after{border-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog .premium-blog-entry-title, .elementor-widget-premium-addon-blog .premium-blog-entry-title a{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-blog .premium-blog-entry-title a{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog .premium-blog-entry-title:hover a{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-blog .premium-blog-cats-container a{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-premium-addon-blog .premium-blog-meta-data{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-premium-addon-blog .premium-blog-post-content{color:var( --e-global-color-text );}.elementor-widget-premium-addon-blog .premium-blog-post-tags-container{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog .premium-blog-pagination-container .page-numbers{color:var( --e-global-color-secondary );background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-blog .premium-blog-pagination-container .page-numbers:hover{color:var( --e-global-color-primary );background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog .premium-blog-pagination-container span.current{color:var( --e-global-color-primary );background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog ul.slick-dots li{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-blog ul.slick-dots li.slick-active{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-blog .premium-blog-wrap .slick-arrow{color:var( --e-global-color-primary );background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-button .premium-button{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-button .premium-button .premium-button-text-icon-wrapper span{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-button .premium-button-text-icon-wrapper i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-button .premium-button-text-icon-wrapper svg{fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-button .premium-button, .elementor-widget-premium-addon-button .premium-button.premium-button-style2-shutinhor:before , .elementor-widget-premium-addon-button .premium-button.premium-button-style2-shutinver:before , .elementor-widget-premium-addon-button .premium-button-style5-radialin:before , .elementor-widget-premium-addon-button .premium-button-style5-rectin:before{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-button .premium-button:hover .premium-button-text-icon-wrapper span{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-button .premium-button:hover .premium-button-text-icon-wrapper i{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-button .premium-button:hover .premium-button-text-icon-wrapper svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-button .premium-button-style4-icon-wrapper{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-button .premium-button-style4-icon-wrapper svg{fill:var( --e-global-color-primary );}.elementor-widget-premium-addon-button .premium-button-none:hover, .elementor-widget-premium-addon-button .premium-button-style1:before, .elementor-widget-premium-addon-button .premium-button-style2-shutouthor:before, .elementor-widget-premium-addon-button .premium-button-style2-shutoutver:before, .elementor-widget-premium-addon-button .premium-button-style2-shutinhor, .elementor-widget-premium-addon-button .premium-button-style2-shutinver, .elementor-widget-premium-addon-button .premium-button-style2-dshutinhor:before, .elementor-widget-premium-addon-button .premium-button-style2-dshutinver:before, .elementor-widget-premium-addon-button .premium-button-style2-scshutouthor:before, .elementor-widget-premium-addon-button .premium-button-style2-scshutoutver:before, .elementor-widget-premium-addon-button .premium-button-style3-after:hover, .elementor-widget-premium-addon-button .premium-button-style3-before:hover, .elementor-widget-premium-addon-button .premium-button-style4-icon-wrapper, .elementor-widget-premium-addon-button .premium-button-style5-radialin, .elementor-widget-premium-addon-button .premium-button-style5-radialout:before, .elementor-widget-premium-addon-button .premium-button-style5-rectin, .elementor-widget-premium-addon-button .premium-button-style5-rectout:before, .elementor-widget-premium-addon-button .premium-button-style6-bg, .elementor-widget-premium-addon-button .premium-button-style6:before{background-color:var( --e-global-color-text );}.elementor-widget-premium-addon-button .premium-button-style7 .premium-button-text-icon-wrapper:before{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-button .premium-button-style7 .premium-button-text-icon-wrapper:after{background-color:var( --e-global-color-text );}.elementor-widget-premium-carousel-widget .premium-carousel-wrapper .slick-arrow{color:var( --e-global-color-secondary );}.elementor-widget-premium-carousel-widget .premium-carousel-wrapper .slick-arrow svg{fill:var( --e-global-color-secondary );}.elementor-widget-premium-carousel-widget .premium-carousel-wrapper .slick-arrow:hover{color:var( --e-global-color-secondary );}.elementor-widget-premium-carousel-widget .premium-carousel-wrapper .slick-arrow:hover svg{fill:var( --e-global-color-secondary );}.elementor-widget-premium-carousel-widget ul.slick-dots li{color:var( --e-global-color-secondary );}.elementor-widget-premium-carousel-widget ul.slick-dots li svg{fill:var( --e-global-color-secondary );}.elementor-widget-premium-carousel-widget ul.slick-dots li.slick-active{color:var( --e-global-color-primary );}.elementor-widget-premium-carousel-widget ul.slick-dots li.slick-active svg{fill:var( --e-global-color-primary );}.elementor-widget-premium-contact-form .premium-cf7-container, .elementor-widget-premium-contact-form .premium-cf7-container label{color:var( --e-global-color-primary );}.elementor-widget-premium-contact-form .premium-cf7-container{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-contact-form .premium-cf7-container input.wpcf7-text, .elementor-widget-premium-contact-form .premium-cf7-container textarea.wpcf7-textarea{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-contact-form .premium-cf7-container input.wpcf7-submit{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );background-color:var( --e-global-color-primary );}.elementor-widget-premium-countdown-timer .countdown .countdown-section .countdown-amount, .elementor-widget-premium-countdown-timer .premium-countdown-flip .premium-countdown-figure span{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-countdown-timer .countdown .countdown-section .countdown-amount,\n .elementor-widget-premium-countdown-timer .premium-countdown-flip .premium-countdown-figure,\n .elementor-widget-premium-countdown-timer .premium-countdown-flip .premium-countdown-figure .top,\n .elementor-widget-premium-countdown-timer .premium-countdown-flip .premium-countdown-figure .top-back,\n .elementor-widget-premium-countdown-timer .premium-countdown-flip .premium-countdown-figure .bottom-back {background-color:var( --e-global-color-primary );}.elementor-widget-premium-countdown-timer .countdown .countdown-section .countdown-period, .elementor-widget-premium-countdown-timer .premium-countdown-label{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-countdown-timer .countdown_separator{color:var( --e-global-color-secondary );}.elementor-widget-premium-countdown-timer .premium-countdown-exp-message{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-counter .premium-counter-area .premium-counter-icon .icon i{color:var( --e-global-color-primary );}.elementor-widget-premium-counter .premium-counter-area .premium-counter-icon .icon svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-counter .premium-counter-area .premium-counter-icon .icon-bg{background:var( --e-global-color-secondary );}.elementor-widget-premium-counter .premium-counter-area .premium-counter-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-counter .premium-counter-area .premium-counter-init{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-counter .premium-counter-area span#prefix{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-counter .premium-counter-area span#suffix{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-dual-header .premium-dual-header-first-span{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-dual-header .premium-dual-header-second-header{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-dual-header .premium-title-bg-text:before{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-fancy-text .premium-fancy-text{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-fancy-text .premium-fancy-svg-text .premium-fancy-list-items{fill:var( --e-global-color-primary );}.elementor-widget-premium-addon-fancy-text .premium-fancy-text-wrapper:not(.auto-fade) .premium-fancy-text, .elementor-widget-premium-addon-fancy-text .premium-fancy-text svg g > text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-fancy-text .typed-cursor{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-fancy-text .premium-prefix-text, .elementor-widget-premium-addon-fancy-text .premium-suffix-text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-fancy-text .loading .premium-loading-bar{background-color:var( --e-global-color-primary );}.elementor-widget-premium-img-gallery .premium-gallery-img-name, .elementor-widget-premium-img-gallery .premium-gallery-img-name a{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-img-gallery .premium-gallery-img-desc, .elementor-widget-premium-img-gallery .premium-gallery-img-desc a{color:var( --e-global-color-text );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-img-gallery .pa-gallery-magnific-image i, .elementor-widget-premium-img-gallery .pa-gallery-img-link i{color:var( --e-global-color-primary );}.elementor-widget-premium-img-gallery .pa-gallery-magnific-image svg, .elementor-widget-premium-img-gallery .pa-gallery-img-link svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-img-gallery .pa-gallery-magnific-image span, .elementor-widget-premium-img-gallery .pa-gallery-img-link span{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-img-gallery .pa-gallery-magnific-image:hover i, .elementor-widget-premium-img-gallery .pa-gallery-img-link:hover i{color:var( --e-global-color-primary );}.elementor-widget-premium-img-gallery .pa-gallery-magnific-image:hover svg, .elementor-widget-premium-img-gallery .pa-gallery-img-link:hover svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-img-gallery .pa-gallery-magnific-image:hover span, .elementor-widget-premium-img-gallery .pa-gallery-img-link:hover span{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-img-gallery .premium-gallery-cats-container li a.category{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-img-gallery .premium-gallery-cats-container li a.category span{color:var( --e-global-color-secondary );}.elementor-widget-premium-img-gallery .premium-gallery-cats-container li a.active span{color:var( --e-global-color-primary );}.elementor-widget-premium-img-gallery .premium-gallery-load-more-btn{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-secondary );}.elementor-widget-premium-img-gallery .premium-gallery-load-more-btn .premium-loader{border-color:var( --e-global-color-secondary );border-top-color:var( --e-global-color-secondary );}.elementor-widget-premium-img-gallery .premium-gallery-load-more-btn:hover{color:var( --e-global-color-secondary );}.elementor-widget-premium-icon-list .premium-bullet-list-wrapper i , .elementor-widget-premium-icon-list .premium-bullet-list-icon-text p{color:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-wrapper svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-blur:hover .premium-bullet-list-wrapper i, .elementor-widget-premium-icon-list .premium-bullet-list-blur:hover .premium-bullet-list-wrapper svg, .elementor-widget-premium-icon-list .premium-bullet-list-blur:hover .premium-bullet-list-wrapper .premium-bullet-list-icon-text p{text-shadow:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-content:hover .premium-bullet-list-wrapper i ,.elementor-widget-premium-icon-list .premium-bullet-list-content:hover .premium-bullet-list-icon-text p{color:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-blur .premium-bullet-list-content:hover .premium-bullet-list-wrapper i , .elementor-widget-premium-icon-list .premium-bullet-list-blur .premium-bullet-list-content:hover .premium-bullet-list-icon-text p{text-shadow:var( --e-global-color-primary );color:var( --e-global-color-primary );} .elementor-widget-premium-icon-list .premium-bullet-list-icon-text p{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );} .elementor-widget-premium-icon-list .premium-bullet-list-text span {font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );} .elementor-widget-premium-icon-list .premium-bullet-list-text span{color:var( --e-global-color-primary );} .elementor-widget-premium-icon-list .premium-bullet-list-blur:hover .premium-bullet-list-text span{text-shadow:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-content:hover .premium-bullet-list-text span{color:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-blur .premium-bullet-list-content:hover .premium-bullet-list-text span{text-shadow:var( --e-global-color-primary );color:var( --e-global-color-primary );} .elementor-widget-premium-icon-list .premium-bullet-list-badge span{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-premium-icon-list .premium-bullet-list-badge span{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );}.elementor-widget-premium-icon-list .premium-bullet-list-divider:not(:last-child):after {border-top-color:var( --e-global-color-secondary );}.elementor-widget-premium-icon-list .premium-bullet-list-divider-inline:not(:last-child):after {border-left-color:var( --e-global-color-secondary );}.elementor-widget-premium-icon-list li.premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after{border-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-button .premium-image-button .premium-image-button-text-icon-wrapper span{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button-text-icon-wrapper i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button-text-icon-wrapper svg{fill:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button:hover .premium-image-button-text-icon-wrapper span{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button:hover .premium-image-button-text-icon-wrapper i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button:hover .premium-image-button-text-icon-wrapper svg{fill:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-button .premium-image-button-style4-icon-wrapper{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-button .premium-image-button-style4-icon-wrapper svg{fill:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-button .premium-image-button-style3:before{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-button .premium-image-button-overlap-effect-horizontal:before, .elementor-widget-premium-addon-image-button .premium-image-button-overlap-effect-vertical:before{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-button .premium-image-button-none:hover, .elementor-widget-premium-addon-image-button .premium-image-button-style4-icon-wrapper, .elementor-widget-premium-addon-image-button .premium-image-button-style1:before, .elementor-widget-premium-addon-image-button .premium-image-button-style3:hover, .elementor-widget-premium-addon-image-button .premium-image-button-overlap-effect-horizontal:hover, .elementor-widget-premium-addon-image-button .premium-image-button-overlap-effect-vertical:hover, .elementor-widget-premium-addon-image-button .premium-button-style6-bg, .elementor-widget-premium-addon-image-button .premium-button-style6:before{background-color:var( --e-global-color-text );}.elementor-widget-premium-addon-image-button .premium-image-button-squares-effect:before, .elementor-widget-premium-addon-image-button .premium-image-button-squares-effect:after,.elementor-widget-premium-addon-image-button .premium-image-button-squares-square-container:before, .elementor-widget-premium-addon-image-button .premium-image-button-squares-square-container:after{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-separator .premium-image-separator-container i{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-separator .premium-image-separator-container > svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-separator .premium-image-separator-container i:hover{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-separator .premium-image-separator-container > svg:hover{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-image-separator .premium-image-separator-container i, .elementor-widget-premium-addon-image-separator .premium-image-separator-container > svg{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-image-separator .premium-image-separator-container i:hover, .elementor-widget-premium-addon-image-separator .premium-image-separator-container > svg:hover{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-maps .premium-maps-info-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-maps .premium-maps-info-desc{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn, .elementor-widget-premium-addon-modal-box .premium-modal-trigger-text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn:hover, .elementor-widget-premium-addon-modal-box .premium-modal-trigger-text:hover{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn svg{fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn:hover i{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn:hover svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-modal-box .premium-modal-trigger-btn:hover{background:var( --e-global-color-text );}.elementor-widget-premium-addon-modal-box .premium-modal-box-modal-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-modal-box .premium-modal-box-modal-lower-close{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-secondary );background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-modal-box .premium-modal-box-modal-lower-close:hover{color:var( --e-global-color-primary );background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-person .premium-person-name{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-person .premium-person-title{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-person .premium-person-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-person .premium-person-list-item i{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-person .premium-person-list-item:hover i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-person .premium-persons-container .slick-arrow{color:var( --e-global-color-primary );background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-person .premium-persons-container .slick-arrow:hover{color:var( --e-global-color-primary );background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-icon-container i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-icon-container svg{fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-icon-container i, .elementor-widget-premium-addon-pricing-table .premium-pricing-icon, .elementor-widget-premium-addon-pricing-table .premium-pricing-image{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-table-title{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-slashed-price-value{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-price-currency{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-price-value{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-price-separator{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-price-duration{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-list-span{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-list .premium-pricing-list-span{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-feature-icon{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-list-item svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-list-tooltip{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-description-container{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-price-button{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-pricing-price-button:hover{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-pricing-table .premium-pricing-badge-container .corner span{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-pricing-table .premium-badge-triangle.premium-badge-left .corner{border-top-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-pricing-table .premium-badge-triangle.premium-badge-right .corner{border-right-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-pricing-table .premium-badge-circle, .elementor-widget-premium-addon-pricing-table .premium-badge-stripe .corner, .elementor-widget-premium-addon-pricing-table .premium-badge-flag .corner{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-pricing-table .premium-badge-flag .corner::before{border-left:var( --e-global-color-primary );}.elementor-widget-premium-addon-progressbar .premium-progressbar-circle-base{border-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-progressbar .premium-progressbar-circle div{border-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-progressbar .premium-progressbar-left-label{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-progressbar .premium-progressbar-right-label{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-progressbar .premium-progressbar-center-label{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-progressbar .premium-progressbar-percentage{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-progressbar .premium-progressbar-arrow{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-progressbar .premium-progressbar-pin{border-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-progressbar .premium-progressbar-circle-icon{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-progressbar .premium-progressbar-circle-content svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-testimonials .premium-testimonial-img-wrapper{border-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-testimonials .premium-testimonial-person-name{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-testimonials .premium-testimonial-separator{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-testimonials .premium-testimonial-company-link{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-testimonials .premium-testimonial-text-wrapper{color:var( --e-global-color-text );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-title .premium-title-header{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-title.premium-title-stroke-yes .premium-title-text{-webkit-text-fill-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-style8 .premium-title-text[data-animation=\"shiny\"]{--base-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-style2{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-title .premium-title-style3{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-title .premium-title-style5{border-bottom:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-style6{border-bottom:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-style6:before{border-bottom-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-style7-stripe{background-color:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-icon{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-header svg{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );}.elementor-widget-premium-addon-title .premium-title-bg-text:before{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-video-box .premium-video-box-play-icon{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-video-box .premium-video-box-play-icon-container:hover .premium-video-box-play-icon{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-video-box .premium-video-box-text{color:var( --e-global-color-primary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-video-box .premium-video-box-description-container:hover .premium-video-box-text{color:var( --e-global-color-primary );}.elementor-widget-premium-addon-video-box .premium-video-box-description-container{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-video-box .premium-video-box-sticky-close i{color:var( --e-global-color-secondary );}.elementor-widget-premium-addon-video-box .premium-video-box-sticky-infobar{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-addon-video-box .premium-youtube-vid-title{color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-tooltip{color:var( --e-global-color-primary );background-color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-tooltip span{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-premium-vscroll .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after{border-left-color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after{border-right-color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-dots .premium-vscroll-nav-link span{background-color:var( --e-global-color-primary );border-color:var( --e-global-color-secondary );}.elementor-widget-premium-vscroll .premium-vscroll-dots li.active .premium-vscroll-nav-link span{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-vscroll .premium-vscroll-dots{background-color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link{color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover{color:var( --e-global-color-primary );}.elementor-widget-premium-vscroll .premium-vscroll-nav-menu .premium-vscroll-nav-item{background-color:var( --e-global-color-secondary );}.elementor-widget-premium-vscroll .premium-vscroll-nav-menu .premium-vscroll-nav-item.active .premium-vscroll-nav-link{color:var( --e-global-color-secondary );}.elementor-widget-premium-vscroll .premium-vscroll-nav-menu .premium-vscroll-nav-item.active .premium-vscroll-nav-link:hover{color:var( --e-global-color-secondary );}.elementor-widget-premium-vscroll .premium-vscroll-nav-menu .premium-vscroll-nav-item.active{background-color:var( --e-global-color-primary );}\";}','yes'),(33103,'rsssl_le_start_renewal','1','yes'),(36111,'elementskit-lite__banner_last_check','1644165834','yes'),(36112,'elementskit-lite__banner_data','O:8:\"stdClass\":3:{s:8:\"10007061\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007061;s:5:\"title\";s:23:\"Wpmet Flash Sale 2.2.22\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644192000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:35:\"https://wpmet.com/banner/flash-sale\";s:12:\"banner_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:17:\"flashsale22banner\";}}s:8:\"10007014\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007014;s:5:\"title\";s:40:\"Wpmet Holiday Deal 2021 (updated by CEO)\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1639958400;s:3:\"end\";i:1642204800;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:38:\"https://wpmet.com/banner/holiday-deals\";s:12:\"banner_image\";s:81:\"https://api.wpmet.com/auth/wp-content/uploads/2021/12/Holiday-InPlugin-Banner.gif\";s:9:\"blacklist\";s:11:\"elementskit\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:56:\"background-color: #0a162a; display: block; height: 60px;\";s:10:\"unique_key\";s:22:\"holidaydeal2022banner2\";}}s:8:\"10006865\";O:8:\"stdClass\":7:{s:2:\"id\";i:10006865;s:5:\"title\";s:46:\"Holiday Sale 2021 - dashboard (updated by CEO)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1643846400;s:3:\"end\";i:1644105600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:792:\"<span style=\"font-size: 16px;\">ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and <strong style=\"color: green;\">save up to 70% instantly</strong> throughout this <span data-sheets-value=\"{"1":2,"2":"ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins in a bundle plan and save 70% instantly throughout this 48-hour Flash Sale!"}\" data-sheets-userformat=\"{"2":27393,"3":{"1":0},"11":4,"12":0,"14":{"1":3,"3":1},"16":10,"17":1}\">48-hour Flash Sale!</span></span>\r\n\r\n<a href=\"https://wpmet.com/notice/blackfriday\" target=\"_blank\" rel=\"noopener\">Claim Yours →</a>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/02/InPlugin-Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:19:\"flashsale2022banner\";}}}','yes'),(44799,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:15:{s:9:\"site-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:15:\"navigation-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:4:\"html\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:17:\"hfe-search-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:8:\"hfe-cart\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:7:\"heading\";a:2:{s:7:\"content\";s:672:\"<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:5:\"3.5.6\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:5:\"video\";a:2:{s:7:\"content\";s:782:\"<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-video .elementor-widget-container{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-background-size:cover;background-size:cover;background-position:50%}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{display:block;width:100%}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}</style>\";s:7:\"version\";s:5:\"3.5.6\";}s:9:\"copyright\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:24:\"elementskit-social-media\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:13:\"image-gallery\";a:2:{s:7:\"content\";s:2473:\"<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-image-gallery .gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%;max-width:100%;margin:0 auto}.elementor-image-gallery .gallery-item img{margin:0 auto}.elementor-image-gallery .gallery-item .gallery-caption{margin:0}.elementor-image-gallery figure img{display:block}.elementor-image-gallery figure figcaption{width:100%}.gallery-spacing-custom .elementor-image-gallery .gallery-icon{padding:0}@media (min-width:768px){.elementor-image-gallery .gallery-columns-2 .gallery-item{max-width:50%}.elementor-image-gallery .gallery-columns-3 .gallery-item{max-width:33.33%}.elementor-image-gallery .gallery-columns-4 .gallery-item{max-width:25%}.elementor-image-gallery .gallery-columns-5 .gallery-item{max-width:20%}.elementor-image-gallery .gallery-columns-6 .gallery-item{max-width:16.666%}.elementor-image-gallery .gallery-columns-7 .gallery-item{max-width:14.28%}.elementor-image-gallery .gallery-columns-8 .gallery-item{max-width:12.5%}.elementor-image-gallery .gallery-columns-9 .gallery-item{max-width:11.11%}.elementor-image-gallery .gallery-columns-10 .gallery-item{max-width:10%}}@media (min-width:480px) and (max-width:767px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:50%}}@media (max-width:479px){.elementor-image-gallery .gallery.gallery-columns-2 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-3 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-4 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-5 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-6 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-7 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-8 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-9 .gallery-item,.elementor-image-gallery .gallery.gallery-columns-10 .gallery-item{max-width:100%}}</style>\";s:7:\"version\";s:5:\"3.5.6\";}s:5:\"image\";a:2:{s:7:\"content\";s:268:\"<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:5:\"3.5.6\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:5:\"3.5.6\";}s:23:\"elementskit-ninja-forms\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:5:\"3.5.6\";}s:11:\"google_maps\";a:2:{s:7:\"content\";s:178:\"<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps iframe{height:300px}</style>\";s:7:\"version\";s:5:\"3.5.6\";}}}}','yes'),(45187,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1647551879','no'),(45188,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:31:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:45:\"https://woocommerce.com/woocommerce-shipping/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:31:\"https://woocommerce.com/mobile/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:16:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:270:\"Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:175:\"Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:20:31\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons§ion=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"We’d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:22:\"wcpay_applepay_q1_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:22:\"wcpay_applepay_q1_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Increase conversions with Apple Pay – just like Diane does\";s:7:\"content\";s:472:\"See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"wcpay_applepay_q1_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:39:\"Let your customers know about Apple Pay\";}}s:3:\"url\";s:48:\"https://developer.apple.com/apple-pay/marketing/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-02-07 00:00:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-03-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:23:\"stripe_applepay_q1_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"stripe_applepay_q1_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with Apple Pay – just like Thomas does\";s:7:\"content\";s:521:\"Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings > Payments > Stripe.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"stripe_applepay_q1_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:45:\"&page=wc-settings&tab=checkout§ion=stripe\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-02-07 00:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-03-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:23:\"square_applepay_q1_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"square_applepay_q1_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:54:\"Increase conversions with a faster checkout experience\";s:7:\"content\";s:252:\"By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings > Payments > Square.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"square_applepay_q1_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:28:\"&page=wc-settings&tab=square\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-02-07 00:00:11\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-03-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}}}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:29:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.1\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:29:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.1\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}}','no'),(55626,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(55628,'post_by_email_address2','NULL','yes'),(55629,'monitor_receive_notifications','1','yes'),(56310,'woocommerce_google_analytics_pro_notice_shown','1','yes'),(56329,'woocommerce_task_list_completed_lists','a:1:{i:0;s:8:\"extended\";}','yes'),(56372,'woocommerce_google_analytics_settings','a:17:{s:5:\"ga_id\";s:14:\"UA-217042680-1\";s:18:\"ga_set_domain_name\";s:0:\"\";s:15:\"ga_gtag_enabled\";s:2:\"no\";s:26:\"ga_use_universal_analytics\";s:3:\"yes\";s:28:\"ga_standard_tracking_enabled\";s:2:\"no\";s:30:\"ga_support_display_advertising\";s:3:\"yes\";s:36:\"ga_support_enhanced_link_attribution\";s:2:\"no\";s:20:\"ga_anonymize_enabled\";s:3:\"yes\";s:23:\"ga_404_tracking_enabled\";s:3:\"yes\";s:29:\"ga_ecommerce_tracking_enabled\";s:3:\"yes\";s:25:\"ga_event_tracking_enabled\";s:3:\"yes\";s:38:\"ga_enhanced_ecommerce_tracking_enabled\";s:2:\"no\";s:36:\"ga_enhanced_remove_from_cart_enabled\";s:3:\"yes\";s:38:\"ga_enhanced_product_impression_enabled\";s:3:\"yes\";s:33:\"ga_enhanced_product_click_enabled\";s:3:\"yes\";s:39:\"ga_enhanced_product_detail_view_enabled\";s:3:\"yes\";s:36:\"ga_enhanced_checkout_process_enabled\";s:3:\"yes\";}','yes'),(59550,'_transient_timeout_wc_term_counts','1647185529','no'),(59551,'_transient_wc_term_counts','a:10:{i:28;s:1:\"5\";i:19;s:1:\"1\";i:22;s:1:\"4\";i:29;s:1:\"2\";i:30;s:1:\"2\";i:31;s:1:\"5\";i:24;s:1:\"1\";i:25;s:1:\"2\";i:26;s:1:\"1\";i:18;s:1:\"1\";}','no'),(60669,'db_upgraded','','yes'),(64352,'can_compress_scripts','0','no'),(66932,'_transient_timeout_usps_quote_fab02abcc61b59bad53aa78172b95d99','1647023671','no'),(66933,'_transient_usps_quote_fab02abcc61b59bad53aa78172b95d99','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67185,'_transient_timeout_jetpack_file_data_10.0','1646992590','no'),(67186,'_transient_jetpack_file_data_10.0','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(67638,'_transient_timeout_usps_quote_caee2c6634b726c376b62f1a60190046','1647185489','no'),(67639,'_transient_usps_quote_caee2c6634b726c376b62f1a60190046','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67656,'_transient_timeout_wc_child_has_weight_51','1647185529','no'),(67657,'_transient_wc_child_has_weight_51','0','no'),(67658,'_transient_timeout_wc_child_has_dimensions_51','1647185529','no'),(67659,'_transient_wc_child_has_dimensions_51','0','no'),(67662,'_transient_timeout_usps_quote_8f78e4a2645803e2c953bcbe69e376d8','1647185534','no'),(67663,'_transient_usps_quote_8f78e4a2645803e2c953bcbe69e376d8','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67667,'_transient_timeout_usps_quote_60a16d00e00fa8d29ebd1bc832a0f898','1647185548','no'),(67668,'_transient_usps_quote_60a16d00e00fa8d29ebd1bc832a0f898','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67671,'_transient_timeout_usps_quote_6a349b2b60cdd61fa87db5a9bbad831d','1647185556','no'),(67672,'_transient_usps_quote_6a349b2b60cdd61fa87db5a9bbad831d','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67675,'_transient_timeout_usps_quote_2fb82b87f0f25c411414b25b2d4adeaf','1647185562','no'),(67676,'_transient_usps_quote_2fb82b87f0f25c411414b25b2d4adeaf','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67680,'_transient_timeout_usps_quote_ea2b8b5acb44d4388340cd8cd2e1d6cc','1647185568','no'),(67681,'_transient_usps_quote_ea2b8b5acb44d4388340cd8cd2e1d6cc','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67684,'_transient_timeout_usps_quote_11c488c2a4353548f9252b92f82fc5f8','1647185576','no'),(67685,'_transient_usps_quote_11c488c2a4353548f9252b92f82fc5f8','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67688,'_transient_timeout_usps_quote_5dc7d07eab9bcdf9022df711ac23cf69','1647185582','no'),(67689,'_transient_usps_quote_5dc7d07eab9bcdf9022df711ac23cf69','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67692,'_transient_timeout_usps_quote_6b56da165c69fabb2c18e8c7c452e3fa','1647185592','no'),(67693,'_transient_usps_quote_6b56da165c69fabb2c18e8c7c452e3fa','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67698,'_transient_timeout_usps_quote_80155460e445f1f271f5d3e42d9470a3','1647185598','no'),(67699,'_transient_usps_quote_80155460e445f1f271f5d3e42d9470a3','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67702,'_transient_timeout_usps_quote_5235c6a6e8bd9f138810937e57e8a973','1647185602','no'),(67703,'_transient_usps_quote_5235c6a6e8bd9f138810937e57e8a973','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67706,'_transient_timeout_usps_quote_4c0169042c0652be8a3a685fec31e6e6','1647185612','no'),(67707,'_transient_usps_quote_4c0169042c0652be8a3a685fec31e6e6','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67710,'_transient_timeout_usps_quote_773f3867de372ea9385e980680016bc5','1647185617','no'),(67711,'_transient_usps_quote_773f3867de372ea9385e980680016bc5','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67714,'_transient_timeout_usps_quote_30ba919be63bf4608f5c5bf2f72d9b7a','1647185623','no'),(67715,'_transient_usps_quote_30ba919be63bf4608f5c5bf2f72d9b7a','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67721,'_transient_timeout_usps_quote_5e967264e3d6b0cd5651ff9421eb52af','1647185631','no'),(67722,'_transient_usps_quote_5e967264e3d6b0cd5651ff9421eb52af','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67725,'_transient_timeout_usps_quote_fc0b06ad0e2a7a48e62c765347f8bea8','1647185638','no'),(67726,'_transient_usps_quote_fc0b06ad0e2a7a48e62c765347f8bea8','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67729,'_transient_timeout_usps_quote_18eca7df64864529f7c4b0ad65131f3a','1647185644','no'),(67730,'_transient_usps_quote_18eca7df64864529f7c4b0ad65131f3a','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67733,'_transient_timeout_usps_quote_7ac52b35596f4df30bdf2739f536e098','1647185649','no'),(67734,'_transient_usps_quote_7ac52b35596f4df30bdf2739f536e098','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67739,'_transient_timeout_usps_quote_c7a851e42c12617c2b1644ccb2f7570b','1647185667','no'),(67740,'_transient_usps_quote_c7a851e42c12617c2b1644ccb2f7570b','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67745,'_transient_timeout_usps_quote_1f8575416e14a2ed6148c38c7e9d6fdb','1647185687','no'),(67746,'_transient_usps_quote_1f8575416e14a2ed6148c38c7e9d6fdb','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(67754,'_transient_timeout_usps_quote_db18063307a7468e65eed7de1f42a101','1647185705','no'),(67755,'_transient_usps_quote_db18063307a7468e65eed7de1f42a101','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70930,'_transient_timeout_usps_quote_04480bc0082a027d25d6cbb0b36f109c','1647854535','no'),(70931,'_transient_usps_quote_04480bc0082a027d25d6cbb0b36f109c','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70932,'_transient_timeout_usps_quote_9ea0f52740c618908dc0af87f14ece59','1647854535','no'),(70933,'_transient_usps_quote_9ea0f52740c618908dc0af87f14ece59','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70938,'_transient_timeout_usps_quote_444133123fc3cd24960babd838670a8f','1647854546','no'),(70939,'_transient_usps_quote_444133123fc3cd24960babd838670a8f','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70940,'_transient_timeout_usps_quote_170eb0b6923198b7604710dd58e3820a','1647854546','no'),(70941,'_transient_usps_quote_170eb0b6923198b7604710dd58e3820a','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70942,'_transient_timeout_usps_quote_5d561a4a8ae1d4d2bf1e586edb6bc1b2','1647854546','no'),(70943,'_transient_usps_quote_5d561a4a8ae1d4d2bf1e586edb6bc1b2','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70950,'_transient_timeout_usps_quote_b0fc27c72d32f444a1594f55aff143d2','1647854583','no'),(70951,'_transient_usps_quote_b0fc27c72d32f444a1594f55aff143d2','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70952,'_transient_timeout_usps_quote_b4edc82b75babc087cb04bda792198f3','1647854583','no'),(70953,'_transient_usps_quote_b4edc82b75babc087cb04bda792198f3','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70957,'_transient_timeout_usps_quote_25e38eece5070e9cc7da5ba59a1e6193','1647854584','no'),(70958,'_transient_usps_quote_25e38eece5070e9cc7da5ba59a1e6193','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70967,'_transient_timeout_usps_quote_205372d4fb67999dc5d8a117a024057e','1647854590','no'),(70968,'_transient_usps_quote_205372d4fb67999dc5d8a117a024057e','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70971,'_transient_timeout_usps_quote_5f584c4cab7b732f24654217948996c0','1647854597','no'),(70972,'_transient_usps_quote_5f584c4cab7b732f24654217948996c0','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70975,'_transient_timeout_usps_quote_5828e0f67cc041c86beab0246e16f4b2','1647854602','no'),(70976,'_transient_usps_quote_5828e0f67cc041c86beab0246e16f4b2','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70977,'_transient_timeout_usps_quote_ff4b5fe31beaa18b913e93b109905e50','1647854602','no'),(70978,'_transient_usps_quote_ff4b5fe31beaa18b913e93b109905e50','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70983,'_transient_timeout_usps_quote_e37da4d6428f886b8e4f755de0fa9f44','1647854638','no'),(70984,'_transient_usps_quote_e37da4d6428f886b8e4f755de0fa9f44','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70985,'_transient_timeout_usps_quote_a5a3a2fed095431b91740d8c0eb1819c','1647854638','no'),(70986,'_transient_usps_quote_a5a3a2fed095431b91740d8c0eb1819c','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70987,'_transient_timeout_usps_quote_f08da65a6b1eb7f3d5f98270a8203beb','1647854638','no'),(70988,'_transient_usps_quote_f08da65a6b1eb7f3d5f98270a8203beb','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70996,'_transient_timeout_usps_quote_a0f873db56ec28ab52a65f2e04e305df','1647854664','no'),(70997,'_transient_usps_quote_a0f873db56ec28ab52a65f2e04e305df','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(70998,'_transient_timeout_usps_quote_2b9be36c43db1fea740bbd8c79b63c1b','1647854664','no'),(70999,'_transient_usps_quote_2b9be36c43db1fea740bbd8c79b63c1b','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71000,'_transient_timeout_usps_quote_82e1073a1cc7052e370439e44275e57e','1647854664','no'),(71001,'_transient_usps_quote_82e1073a1cc7052e370439e44275e57e','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71010,'_transient_timeout_usps_quote_4317325918162bc870db3dff92f726b0','1647854681','no'),(71011,'_transient_usps_quote_4317325918162bc870db3dff92f726b0','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71012,'_transient_timeout_usps_quote_f49ce2f1df493ef8ea184267ae1a4ef9','1647854681','no'),(71013,'_transient_usps_quote_f49ce2f1df493ef8ea184267ae1a4ef9','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71014,'_transient_timeout_usps_quote_a38560a902310c263b4580b6cdd9b7e6','1647854681','no'),(71015,'_transient_usps_quote_a38560a902310c263b4580b6cdd9b7e6','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71022,'_transient_timeout_usps_quote_07c29640111c49239ada853de7466f23','1647854700','no'),(71023,'_transient_usps_quote_07c29640111c49239ada853de7466f23','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71024,'_transient_timeout_usps_quote_b835508068d1df68679d485a1fde35dd','1647854700','no'),(71025,'_transient_usps_quote_b835508068d1df68679d485a1fde35dd','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71026,'_transient_timeout_usps_quote_20c2f6d818a0cf1ddd001d30204699b7','1647854700','no'),(71027,'_transient_usps_quote_20c2f6d818a0cf1ddd001d30204699b7','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71037,'_transient_timeout_usps_quote_39cfdc5392bd122f4cebb6afefbd0b37','1647854711','no'),(71038,'_transient_usps_quote_39cfdc5392bd122f4cebb6afefbd0b37','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71039,'_transient_timeout_usps_quote_9eed8660e8365beab64ddcd5d0fac064','1647854711','no'),(71040,'_transient_usps_quote_9eed8660e8365beab64ddcd5d0fac064','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71041,'_transient_timeout_usps_quote_ef400935c02c3bf2252ff4409a91ee1d','1647854711','no'),(71042,'_transient_usps_quote_ef400935c02c3bf2252ff4409a91ee1d','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71049,'_transient_timeout_usps_quote_091d27920fc302515aaf96ab8c8abf35','1647854739','no'),(71050,'_transient_usps_quote_091d27920fc302515aaf96ab8c8abf35','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71051,'_transient_timeout_usps_quote_02d137a98d09bf37fd3e3cf236d9f259','1647854739','no'),(71052,'_transient_usps_quote_02d137a98d09bf37fd3e3cf236d9f259','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71053,'_transient_timeout_usps_quote_c5bda02b2d8101740ef537ca713f1648','1647854739','no'),(71054,'_transient_usps_quote_c5bda02b2d8101740ef537ca713f1648','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71063,'_transient_timeout_usps_quote_2517810e1f2063ec51cdbadf98742834','1647854807','no'),(71064,'_transient_timeout_usps_quote_ef9110171d2411dee4956fd78eb6a3ca','1647854807','no'),(71065,'_transient_usps_quote_ef9110171d2411dee4956fd78eb6a3ca','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71066,'_transient_usps_quote_2517810e1f2063ec51cdbadf98742834','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71067,'_transient_timeout_usps_quote_40745ed56cb91d524e003afa15864e36','1647854807','no'),(71068,'_transient_usps_quote_40745ed56cb91d524e003afa15864e36','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71082,'_transient_timeout_usps_quote_83b8fbe62f211ddfbb87e471d8790883','1647854827','no'),(71083,'_transient_usps_quote_83b8fbe62f211ddfbb87e471d8790883','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71084,'_transient_timeout_usps_quote_76ff05fa8d6765ccbcf263c46971e40b','1647854828','no'),(71085,'_transient_usps_quote_76ff05fa8d6765ccbcf263c46971e40b','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71086,'_transient_timeout_usps_quote_661e15e2073fa94ba0aa23f32418f446','1647854828','no'),(71087,'_transient_usps_quote_661e15e2073fa94ba0aa23f32418f446','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(71095,'_transient_timeout_usps_quote_2e86df2b24b219c709bae8b680df6203','1647854843','no'),(71096,'_transient_usps_quote_2e86df2b24b219c709bae8b680df6203','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(72575,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.1\";s:7:\"version\";s:5:\"5.9.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1646945354;s:15:\"version_checked\";s:5:\"5.9.1\";s:12:\"translations\";a:0:{}}','no'),(73946,'_transient_timeout_wc_product_children_51','1648318936','no'),(73947,'_transient_wc_product_children_51','a:2:{s:3:\"all\";a:4:{i:0;i:52;i:1;i:53;i:2;i:54;i:3;i:55;}s:7:\"visible\";a:4:{i:0;i:52;i:1;i:53;i:2;i:54;i:3;i:55;}}','no'),(73948,'_transient_timeout_wc_var_prices_51','1648318936','no'),(73949,'_transient_wc_var_prices_51','{\"version\":\"1638981058\",\"f64ee2eaf75f0f1c5c11e01c4ce4d601\":{\"price\":{\"52\":\"10.00\",\"53\":\"15.00\",\"54\":\"20.00\",\"55\":\"25.00\"},\"regular_price\":{\"52\":\"10.00\",\"53\":\"15.00\",\"54\":\"20.00\",\"55\":\"25.00\"},\"sale_price\":{\"52\":\"10.00\",\"53\":\"15.00\",\"54\":\"20.00\",\"55\":\"25.00\"}}}','no'),(74655,'_transient_timeout_usps_quote_ea2d7fc94bb22ce470cb74ac855b7a48','1648463512','no'),(74656,'_transient_usps_quote_ea2d7fc94bb22ce470cb74ac855b7a48','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(74659,'_transient_timeout_usps_quote_d2e63da2f84675aaf551944341e6c5b7','1648463517','no'),(74660,'_transient_usps_quote_d2e63da2f84675aaf551944341e6c5b7','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(74663,'_transient_timeout_usps_quote_7ade586a574572987cf553b27216ed9d','1648463524','no'),(74664,'_transient_usps_quote_7ade586a574572987cf553b27216ed9d','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(74668,'_transient_timeout_usps_quote_c4a8dc01e3a3a6e0e4ee928da093a414','1648463530','no'),(74669,'_transient_usps_quote_c4a8dc01e3a3a6e0e4ee928da093a414','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(77429,'_transient_timeout_wc_shipping_method_count_legacy','1649006039','no'),(77430,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1633375846\";s:5:\"value\";i:2;}','no'),(78211,'_transient_timeout_usps_quote_94e83dc940ecadf78423949e27d942cc','1649154457','no'),(78212,'_transient_usps_quote_94e83dc940ecadf78423949e27d942cc','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78213,'_transient_timeout_usps_quote_e677901bb1d94cfe7a9918f6b8730d12','1649154457','no'),(78214,'_transient_usps_quote_e677901bb1d94cfe7a9918f6b8730d12','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78215,'_transient_timeout_usps_simple_quote_20b2730da22991875bbeae3065df5ebc','1646994458','no'),(78216,'_transient_usps_simple_quote_20b2730da22991875bbeae3065df5ebc','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78217,'_transient_timeout_usps_simple_quote_d7db20e44d8d53fcdf51b3d9f1285edb','1646994458','no'),(78218,'_transient_usps_simple_quote_d7db20e44d8d53fcdf51b3d9f1285edb','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78221,'_transient_timeout_usps_quote_1292e6f40ec4597dc7455df3c886808d','1649154561','no'),(78222,'_transient_usps_quote_1292e6f40ec4597dc7455df3c886808d','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78223,'_transient_timeout_usps_simple_quote_b8b82f9626b757aa677bb3d0159c53f9','1646994563','no'),(78224,'_transient_usps_simple_quote_b8b82f9626b757aa677bb3d0159c53f9','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78226,'_transient_timeout_usps_quote_e09e8d1e514524dd362c73ccf3fed8a5','1649154563','no'),(78227,'_transient_usps_quote_e09e8d1e514524dd362c73ccf3fed8a5','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78228,'_transient_timeout_usps_quote_93ee1eaeffc737dd6c9152be0d58e519','1649154563','no'),(78229,'_transient_usps_quote_93ee1eaeffc737dd6c9152be0d58e519','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78232,'_transient_timeout_usps_simple_quote_7fde809347d7ed0e4a5eccaff05c5b6a','1646994564','no'),(78233,'_transient_usps_simple_quote_7fde809347d7ed0e4a5eccaff05c5b6a','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78234,'_transient_timeout_usps_simple_quote_ae772300c5f838ba765860a912e14527','1646994565','no'),(78235,'_transient_usps_simple_quote_ae772300c5f838ba765860a912e14527','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78240,'_transient_timeout_usps_quote_2c68f8baaaff7c5073da97a60df7a460','1649154584','no'),(78241,'_transient_usps_quote_2c68f8baaaff7c5073da97a60df7a460','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78242,'_transient_timeout_usps_quote_9c96b6d28a2bd082acf9d6ca428c6721','1649154584','no'),(78243,'_transient_usps_quote_9c96b6d28a2bd082acf9d6ca428c6721','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78244,'_transient_timeout_usps_quote_a8c5f19f2e71a2089906fe6a8b96484b','1649154584','no'),(78245,'_transient_usps_quote_a8c5f19f2e71a2089906fe6a8b96484b','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78246,'_transient_timeout_usps_simple_quote_328587cb7faa8eb67f464f1fdb880726','1646994585','no'),(78247,'_transient_usps_simple_quote_328587cb7faa8eb67f464f1fdb880726','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78249,'_transient_timeout_usps_simple_quote_3f35d9473b3404ea970c6f2726cf21e8','1646994585','no'),(78250,'_transient_usps_simple_quote_3f35d9473b3404ea970c6f2726cf21e8','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78251,'_transient_timeout_usps_simple_quote_27e346678f79d756abeeb01c5d402ed5','1646994585','no'),(78252,'_transient_usps_simple_quote_27e346678f79d756abeeb01c5d402ed5','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78253,'_transient_timeout_usps_quote_129f12079b7e7a7b0c0c68a95d4dc490','1649154599','no'),(78254,'_transient_usps_quote_129f12079b7e7a7b0c0c68a95d4dc490','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78255,'_transient_timeout_usps_quote_89769af8664d31ebd9ce055ddb7bafdc','1649154599','no'),(78256,'_transient_usps_quote_89769af8664d31ebd9ce055ddb7bafdc','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78257,'_transient_timeout_usps_quote_5a5b910d759c991798581110ebd65b4d','1649154600','no'),(78258,'_transient_usps_quote_5a5b910d759c991798581110ebd65b4d','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78259,'_transient_timeout_usps_simple_quote_e0da67c0a5016247ba16a89a4b3df976','1646994600','no'),(78260,'_transient_usps_simple_quote_e0da67c0a5016247ba16a89a4b3df976','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78261,'_transient_timeout_usps_simple_quote_c2a862d5423074144af36a1ac451fc97','1646994600','no'),(78262,'_transient_usps_simple_quote_c2a862d5423074144af36a1ac451fc97','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78263,'_transient_timeout_usps_simple_quote_9648f80b9757d0dd9a63f4af89bfceac','1646994600','no'),(78264,'_transient_usps_simple_quote_9648f80b9757d0dd9a63f4af89bfceac','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78265,'_transient_timeout_usps_quote_9860e10034ae01abfa7a7d6206381d00','1649154610','no'),(78266,'_transient_usps_quote_9860e10034ae01abfa7a7d6206381d00','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78267,'_transient_timeout_usps_quote_fc956516b4765507302ba6407b1d20d2','1649154610','no'),(78268,'_transient_usps_quote_fc956516b4765507302ba6407b1d20d2','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78269,'_transient_timeout_usps_quote_0e5208d287c09908e193fa557c621fa5','1649154610','no'),(78270,'_transient_usps_quote_0e5208d287c09908e193fa557c621fa5','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78271,'_transient_timeout_usps_simple_quote_83c33ba0f72e1cf92f5e7e5c53693fd9','1646994611','no'),(78272,'_transient_usps_simple_quote_83c33ba0f72e1cf92f5e7e5c53693fd9','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78273,'_transient_timeout_usps_simple_quote_922ff09d78dd804dd7a9732546263909','1646994611','no'),(78274,'_transient_usps_simple_quote_922ff09d78dd804dd7a9732546263909','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78275,'_transient_timeout_usps_simple_quote_028b328820741a8972b7615c49c32d8c','1646994611','no'); INSERT INTO `wp_options` VALUES (78276,'_transient_usps_simple_quote_028b328820741a8972b7615c49c32d8c','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78277,'_transient_timeout_usps_quote_07e7ed8058b33e1b4c54bfb26ac331a7','1649154637','no'),(78278,'_transient_usps_quote_07e7ed8058b33e1b4c54bfb26ac331a7','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78279,'_transient_timeout_usps_quote_612416dea23b8cf3ebde76ca15c75443','1649154637','no'),(78280,'_transient_usps_quote_612416dea23b8cf3ebde76ca15c75443','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78281,'_transient_timeout_usps_quote_deb09292c983d333a911aab2780150fc','1649154637','no'),(78282,'_transient_usps_quote_deb09292c983d333a911aab2780150fc','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78283,'_transient_timeout_usps_simple_quote_ed84edfa5d8a0489d86ed14d9986e471','1646994637','no'),(78284,'_transient_usps_simple_quote_ed84edfa5d8a0489d86ed14d9986e471','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78285,'_transient_timeout_usps_simple_quote_d792012ed3bf4c35d315a425df747f22','1646994637','no'),(78286,'_transient_usps_simple_quote_d792012ed3bf4c35d315a425df747f22','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78287,'_transient_timeout_usps_simple_quote_224f5d49c26b1e692cc4c1138fc0e474','1646994638','no'),(78288,'_transient_usps_simple_quote_224f5d49c26b1e692cc4c1138fc0e474','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78293,'_transient_timeout_usps_quote_16e4ee2c5bc81df408b2c0181355f146','1649154646','no'),(78294,'_transient_usps_quote_16e4ee2c5bc81df408b2c0181355f146','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78295,'_transient_timeout_usps_quote_cbc64de4f0bc52614836608f10080183','1649154646','no'),(78296,'_transient_usps_quote_cbc64de4f0bc52614836608f10080183','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78297,'_transient_timeout_usps_quote_ad9190a12502750b27df6b4f59911908','1649154646','no'),(78298,'_transient_usps_quote_ad9190a12502750b27df6b4f59911908','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78299,'_transient_timeout_usps_simple_quote_e774ed245497413c31f5373b9c3a5f8c','1646994647','no'),(78300,'_transient_usps_simple_quote_e774ed245497413c31f5373b9c3a5f8c','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78302,'_transient_timeout_usps_simple_quote_870a3dffb1b68dabab0ba58acfc1dd13','1646994647','no'),(78303,'_transient_usps_simple_quote_870a3dffb1b68dabab0ba58acfc1dd13','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78304,'_transient_timeout_usps_simple_quote_e8bcb569c32c618beb7781faaed728a1','1646994647','no'),(78305,'_transient_usps_simple_quote_e8bcb569c32c618beb7781faaed728a1','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78308,'_transient_timeout_usps_quote_a8781ecba5de54ab9de95d64cd36610b','1649154669','no'),(78309,'_transient_usps_quote_a8781ecba5de54ab9de95d64cd36610b','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78310,'_transient_timeout_usps_quote_f43878ffe55528a6afd28493fd50afe1','1649154669','no'),(78311,'_transient_usps_quote_f43878ffe55528a6afd28493fd50afe1','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78312,'_transient_timeout_usps_quote_f177171f20794fa83fee9cdf3f888308','1649154670','no'),(78313,'_transient_usps_quote_f177171f20794fa83fee9cdf3f888308','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78314,'_transient_timeout_usps_simple_quote_75fb940f30e13a975c4d9f2661d99a05','1646994670','no'),(78315,'_transient_usps_simple_quote_75fb940f30e13a975c4d9f2661d99a05','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78316,'_transient_timeout_usps_simple_quote_28edb0ff8727803ab968d2686c6fcf22','1646994670','no'),(78317,'_transient_usps_simple_quote_28edb0ff8727803ab968d2686c6fcf22','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78318,'_transient_timeout_usps_simple_quote_902fe7af39c944d668da2e3a6243c4af','1646994670','no'),(78319,'_transient_usps_simple_quote_902fe7af39c944d668da2e3a6243c4af','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78320,'_transient_timeout_usps_quote_9967f3a8a67af427eec906fb0f806350','1649154699','no'),(78321,'_transient_usps_quote_9967f3a8a67af427eec906fb0f806350','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78322,'_transient_timeout_usps_quote_82bd02479b0efa77eae224e168e8e7d4','1649154699','no'),(78323,'_transient_usps_quote_82bd02479b0efa77eae224e168e8e7d4','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78324,'_transient_timeout_usps_quote_54194ca69c66ac3423b10f2bb8e32854','1649154699','no'),(78325,'_transient_usps_quote_54194ca69c66ac3423b10f2bb8e32854','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78326,'_transient_timeout_usps_simple_quote_c74e7681fd5892e70d1f6e2a05ba0633','1646994700','no'),(78327,'_transient_usps_simple_quote_c74e7681fd5892e70d1f6e2a05ba0633','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78330,'_transient_timeout_usps_simple_quote_fbaa61ff53602b0bc4f46381de57d404','1646994700','no'),(78331,'_transient_usps_simple_quote_fbaa61ff53602b0bc4f46381de57d404','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78332,'_transient_timeout_usps_simple_quote_9560d84982116c231c038e6d23f70309','1646994700','no'),(78333,'_transient_usps_simple_quote_9560d84982116c231c038e6d23f70309','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78336,'_transient_timeout_usps_quote_55fc67ee56e192f4ba92d4ffb540e036','1649154736','no'),(78337,'_transient_timeout_usps_quote_f77cb4fa736ec562a6230aa5662be52e','1649154736','no'),(78338,'_transient_timeout_usps_quote_e73be187a729b4d1cf2daa58eaeb2251','1649154736','no'),(78339,'_transient_usps_quote_55fc67ee56e192f4ba92d4ffb540e036','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78340,'_transient_usps_quote_f77cb4fa736ec562a6230aa5662be52e','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78341,'_transient_usps_quote_e73be187a729b4d1cf2daa58eaeb2251','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78342,'_transient_timeout_usps_simple_quote_e5b4e150a0ad4b10b35aea2b7ffec697','1646994736','no'),(78343,'_transient_usps_simple_quote_e5b4e150a0ad4b10b35aea2b7ffec697','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78344,'_transient_timeout_usps_simple_quote_0d34b48a95f88910acbd69eadc1cbb11','1646994736','no'),(78345,'_transient_usps_simple_quote_0d34b48a95f88910acbd69eadc1cbb11','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78346,'_transient_timeout_usps_simple_quote_541a6b580c81f126580aa53c057ada89','1646994736','no'),(78348,'_transient_usps_simple_quote_541a6b580c81f126580aa53c057ada89','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78351,'_transient_timeout_usps_quote_91f4f12d9b0fbb08fc88d44dcafad457','1649154749','no'),(78352,'_transient_usps_quote_91f4f12d9b0fbb08fc88d44dcafad457','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78353,'_transient_timeout_usps_quote_89ea23a6d5c0bc9bf358cd39f7336b47','1649154749','no'),(78354,'_transient_usps_quote_89ea23a6d5c0bc9bf358cd39f7336b47','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78355,'_transient_timeout_usps_quote_987ef116ca3b8464006fdacf897e3857','1649154750','no'),(78356,'_transient_usps_quote_987ef116ca3b8464006fdacf897e3857','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(78357,'_transient_timeout_usps_simple_quote_16c0789662d9783e15f312e1ca62d138','1646994750','no'),(78358,'_transient_usps_simple_quote_16c0789662d9783e15f312e1ca62d138','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78359,'_transient_timeout_usps_simple_quote_251311b4a8f24040903c73c474600b92','1646994750','no'),(78360,'_transient_usps_simple_quote_251311b4a8f24040903c73c474600b92','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(78361,'_transient_timeout_usps_simple_quote_4745027865ce581247b1dba992be4137','1646994750','no'),(78362,'_transient_usps_simple_quote_4745027865ce581247b1dba992be4137','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(79024,'_transient_timeout_usps_quote_01a2c25f3b3580a80a9bd3f965610408','1649219037','no'),(79025,'_transient_usps_quote_01a2c25f3b3580a80a9bd3f965610408','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(79026,'_transient_timeout_usps_simple_quote_1abd19ecab1006249eb8d31bad92ec49','1647059037','no'),(79027,'_transient_usps_simple_quote_1abd19ecab1006249eb8d31bad92ec49','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(79294,'_site_transient_timeout_php_check_0260183cef5829810c63d4ec9ff87fd1','1647290120','no'),(79295,'_site_transient_php_check_0260183cef5829810c63d4ec9ff87fd1','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(79594,'_transient_timeout_usps_quote_53ab56a9d7e4776c4f1f262930990a27','1649332876','no'),(79595,'_transient_usps_quote_53ab56a9d7e4776c4f1f262930990a27','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(79596,'_transient_timeout_usps_simple_quote_e04e72700cf5ec5c6dbb22c2d46265f8','1647172876','no'),(79597,'_transient_usps_simple_quote_e04e72700cf5ec5c6dbb22c2d46265f8','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(79604,'_transient_timeout_usps_quote_1deed068bded891413b04b06ec056823','1649332891','no'),(79605,'_transient_usps_quote_1deed068bded891413b04b06ec056823','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>-2147219099</Number><Source>clsRateV4:UnpackRateNode</Source><Description>Missing value for ZipDestination.</Description><HelpFile/><HelpContext/></Error>','no'),(79606,'_transient_timeout_usps_simple_quote_75ea71f526b780c2a4f300f5427d79dd','1647172891','no'),(79607,'_transient_usps_simple_quote_75ea71f526b780c2a4f300f5427d79dd','<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Error><Number>80040B1A</Number><Description>Authorization failure. You are not authorized to connect to this server.</Description><Source>USPSCOM::DoAuth</Source></Error>\n','no'),(79784,'woocommerce_attribute_lookup_enabled','yes','yes'),(79785,'woocommerce_attribute_lookup_direct_updates','no','yes'),(79793,'woocommerce_admin_version','3.2.1','yes'),(80441,'pa_edit_time','1646866765','yes'),(80451,'pa_elements_9b111cfb3','a:0:{}','no'),(80452,'pa_edit_9b111cfb3','1646866765','no'),(80490,'pa_elements_61d9bdece','a:0:{}','no'),(80491,'pa_edit_61d9bdece','1646866765','no'),(80523,'_transient_timeout_jetpack_woocommerce_analytics_cart_checkout_info_cache','1646964821','no'),(80524,'_transient_jetpack_woocommerce_analytics_cart_checkout_info_cache','a:4:{s:29:\"cart_page_contains_cart_block\";i:0;s:33:\"cart_page_contains_cart_shortcode\";i:1;s:37:\"checkout_page_contains_checkout_block\";i:0;s:41:\"checkout_page_contains_checkout_shortcode\";i:1;}','no'),(80526,'pa_elements_bbe0d44a4','a:0:{}','no'),(80527,'pa_edit_bbe0d44a4','1646866765','no'),(80579,'_transient_timeout_wc_onboarding_product_data','1646981505','no'),(80580,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 10 Mar 2022 06:51:45 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"12966\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:4:\"x-rq\";s:13:\"den2 0 4 9980\";s:16:\"content-encoding\";s:4:\"gzip\";s:3:\"age\";s:2:\"23\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}}s:4:\"body\";s:71575:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2,\"reviews_count\":56,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards & local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/woo-WooCommerce_Payments-mtulxp.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":67,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.7,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.5,\"reviews_count\":39,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":23,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/09\\/woo-Payfast-murskg.png\"},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.1,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"Google Ads & Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/07\\/logo-pb-lzevsq.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.1,\"reviews_count\":33,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/10\\/woo-AutomateWoo-m4jpva.png\"},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":44,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&utm_source=woocommerce.com&utm_medium=integration&utm_campaign=woocommerce.com\",\"price\":\"$0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"$49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/02\\/woo-AmazonS3Storage-jhzxk2.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":22,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"$99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":127,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products & let customers request & manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/OM4-Software-Logo-RGB-Round-160x160-1-372opg.png\"},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":52,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"$19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"$0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce Print Invoices & Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":28,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.2,\"reviews_count\":38,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/06\\/logo-cp-ey7bzs.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"$99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$149.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/03\\/logo-csp-aqfm98.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":43,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"$49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":145,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"$0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:71575:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2,\"reviews_count\":56,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards & local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/woo-WooCommerce_Payments-mtulxp.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":67,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.7,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.5,\"reviews_count\":39,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":23,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/09\\/woo-Payfast-murskg.png\"},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.1,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"Google Ads & Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/07\\/logo-pb-lzevsq.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.1,\"reviews_count\":33,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/10\\/woo-AutomateWoo-m4jpva.png\"},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":44,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&utm_source=woocommerce.com&utm_medium=integration&utm_campaign=woocommerce.com\",\"price\":\"$0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"$49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/02\\/woo-AmazonS3Storage-jhzxk2.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":22,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"$99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":127,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products & let customers request & manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/OM4-Software-Logo-RGB-Round-160x160-1-372opg.png\"},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":52,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"$19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"$0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce Print Invoices & Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":28,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.2,\"reviews_count\":38,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/06\\/logo-cp-ey7bzs.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"$99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$149.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/03\\/logo-csp-aqfm98.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":43,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"$49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":145,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"$0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null}]}\";s:3:\"raw\";s:72255:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Thu, 10 Mar 2022 06:51:45 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 12966\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nX-rq: den2 0 4 9980\r\nContent-Encoding: gzip\r\nAge: 23\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\nStrict-Transport-Security: max-age=31536000\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/01\\/woo-Google_Analytics-fvsrvf.png\"},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/12\\/stripe-app-icon-7m1xi7.png\"},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2017\\/11\\/Jetpack-1-m5mwyg.png\",\"excerpt\":\"Security, performance, and marketing tools made for WooCommerce stores by the WordPress experts. Get started with basic security and speed tools for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Jetpack\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/jetpack\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2021\\/02\\/jetpack-logo--80sgtq.png\"},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297,\"rating\":2,\"reviews_count\":56,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment solution fully integrated to Woo. Accept credit\\/debit cards & local payment options with no setup or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/02\\/woo-WooCommerce_Payments-mtulxp.png\"},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503,\"rating\":3.2,\"reviews_count\":67,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/07\\/woo-Square-u8km15.png\"},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816,\"rating\":3.7,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/08\\/woo-Amazon_Pay-8lvfuy.png\"},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147,\"rating\":3.5,\"reviews_count\":39,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618,\"rating\":3,\"reviews_count\":23,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Mailchimp\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/mailchimp\\/\",\"icon\":null},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woo-Shipstation-xqap96.png\"},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/09\\/woo-Payfast-murskg.png\"},{\"title\":\"Google Listings & Ads\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/06\\/marketplace-card.png\",\"excerpt\":\"Reach millions of engaged shoppers across Google with free product listings and ads. Built in partnership with Google.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-listings-and-ads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"118f4d86-f126-4c3a-8525-644e3170d161\",\"slug\":\"google-listings-and-ads\",\"id\":7623964,\"rating\":3.1,\"reviews_count\":12,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2021\\/06\\/woo-GoogleListingsAds-jworee.png\"},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-USPS-yhn1rb.png\"},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665,\"rating\":3.4,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"PayPal Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/PPCP-Tile-PayPal-Logo-and-Cart-Art-2x-2-uozwz8.jpg\",\"excerpt\":\"PayPal\'s latest, all-in-one checkout solution. Securely accept PayPal Digital Payments, credit\\/debit cards and local payment methods.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paypal-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"934115ab-e3f3-4435-9580-345b1ce21899\",\"slug\":\"woocommerce-paypal-payments\",\"id\":6410731,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2020\\/10\\/woo-PayPal-nlioum.png\"},{\"title\":\"Google Ads & Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145,\"rating\":4.4,\"reviews_count\":109,\"vendor_name\":\"Kliken\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/kliken\\/\",\"icon\":null},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890,\"rating\":2.7,\"reviews_count\":18,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-CanadaPost-fjlcfq.png\"},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Braintree-wrweyl.png\"},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Power your membership association, online magazine, elearning sites, and more with access control to content\\/products and member discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589,\"rating\":4.4,\"reviews_count\":78,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/woo-RoyalMail-sd9zwy.png\"},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/woo-FedEx-auxjb7.png\"},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/07\\/logo-pb-lzevsq.png\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716,\"rating\":4.9,\"reviews_count\":115,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686,\"rating\":3.1,\"reviews_count\":10,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890,\"rating\":3.1,\"reviews_count\":33,\"vendor_name\":\"Codisto\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/codisto\\/\",\"icon\":null},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982,\"rating\":2.9,\"reviews_count\":17,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woocommerce-xero-integration-sdth2k.jpg\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/woo-Xero-4ovyoc.png\"},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/10\\/woo-AutomateWoo-m4jpva.png\"},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481,\"rating\":4.7,\"reviews_count\":44,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&utm_source=woocommerce.com&utm_medium=integration&utm_campaign=woocommerce.com\",\"price\":\"$0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Live Chat\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/live-chat\\/\",\"icon\":null},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259,\"rating\":2.9,\"reviews_count\":11,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Homepage Contact Section\",\"image\":\"\",\"excerpt\":\"Add a Contact section to the Storefront homepage.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-homepage-contact-section\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"cb12b87f8bbb0139dafbf92ca1f871ef\",\"slug\":\"storefront-homepage-contact-section\",\"id\":1468793,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"$49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Storefront Footer Bar\",\"image\":\"\",\"excerpt\":\"Adds a full-width widget region above the Storefront footer widget area, which can be customized with colors and a background image.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-footer-bar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"6cfd3d4f923cafa16e4801ae801751f4\",\"slug\":\"storefront-footer-bar\",\"id\":1434472,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/02\\/woo-AmazonS3Storage-jhzxk2.png\"},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652,\"rating\":4.5,\"reviews_count\":22,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"$99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729,\"rating\":4.5,\"reviews_count\":127,\"vendor_name\":\"StoreApps\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/storeapps\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/wc-icon-smart-coupons-160-p8fwgu.png\"},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Automate sales tax compliance for your multi-channel e-commerce business. Accurate sales tax calculations, data aggregation, quality reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"TaxJar\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/taxjar\\/\",\"icon\":null},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products & let customers request & manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate your WooCommerce store with 4000+ cloud apps and services today. Trusted by 11,000+ users.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589,\"rating\":4.5,\"reviews_count\":35,\"vendor_name\":\"OM4\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/om4\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/OM4-Software-Logo-RGB-Round-160x160-1-372opg.png\"},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on-time tax filing. No more tracking sales tax rates and rules.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738,\"rating\":5,\"reviews_count\":52,\"vendor_name\":\"Backcourt Development\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/backcourt-development\\/\",\"icon\":null},{\"title\":\"Sensei LMS Course Progress\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-course-progress.png\",\"excerpt\":\"Enable your students to easily see their progress and pick up where they left off in a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-course-progress\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ec0f55d8fa7c517dc1844f5c873a77da\",\"slug\":\"sensei-course-progress\",\"id\":435833,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643,\"rating\":3.4,\"reviews_count\":27,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Storefront Reviews\",\"image\":\"\",\"excerpt\":\"Reviews can often be the deciding factor when making a purchase online. Highlight your best reviews on your homepage, or across your site with Storefront Reviews.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/storefront-reviews\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/reviews\\/\",\"price\":\"$19.00\",\"hash\":\"0c8a1d86b8eff9f1edffa923aeb3fc1f\",\"slug\":\"storefront-reviews\",\"id\":1044976,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2016\\/02\\/woo-Storefront-ipreuh.png\"},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"$0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"WooCommerce Print Invoices & Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666,\"rating\":4.4,\"reviews_count\":28,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed rich product data to Google Merchant Center for setting up free product listings, product ads, and local inventory campaigns. Full control over your field mappings, and feed content so you can maximize campaign performance and ad spend.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619,\"rating\":4.2,\"reviews_count\":38,\"vendor_name\":\"Ademti Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/ademti-software\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/product-icon-omiutq.png\"},{\"title\":\"Sensei LMS Certificates\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-certificates.png\",\"excerpt\":\"Award your students with a certificate of completion and a sense of accomplishment after finishing a course.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-certificates\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"625ee5fe1bf36b4c741ab07507ba2ffd\",\"slug\":\"sensei-certificates\",\"id\":247548,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/06\\/logo-cp-ey7bzs.png\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836,\"rating\":4.9,\"reviews_count\":99,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"$99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Eway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/51456-Eway-logo-tagline-RGB-H-yellow-_-grey.png\",\"excerpt\":\"Take credit card payments securely via Eway (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/10\\/woo-eway-0klzux.png\"},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"Sensei Pro (WC Paid Courses)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/wc-paid-courses.png\",\"excerpt\":\"Sell your online courses using Sensei LMS with WooCommerce \\u2014 complete learning management with quizzes, certificates, content drip, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$149.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/01\\/SenseiProWooIcon-aut8wu.png\"},{\"title\":\"Sensei LMS Media Attachments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2021\\/07\\/sensei-media-attachments.png\",\"excerpt\":\"Provide your students with easy access to additional learning materials, from audio files to slideshows and PDFs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sensei-media-attachments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"788647a9a1d8ef5c95371f0e69223a0f\",\"slug\":\"sensei-media-attachments\",\"id\":290551,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Automattic\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/automattic\\/\",\"icon\":null},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"MyWorks Software\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/myworks-software\\/\",\"icon\":null},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/03\\/logo-csp-aqfm98.png\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253,\"rating\":4.7,\"reviews_count\":43,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/06\\/WooCommerce-icon-160x160-1-3o68ab.jpg\"},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398,\"rating\":4.3,\"reviews_count\":10,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Element Stark\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/element-stark\\/\",\"icon\":null},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Upgrade from Sequential Order Numbers with advanced features and with optional prefixes\\/suffixes.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497,\"rating\":4,\"reviews_count\":19,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"$49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174,\"rating\":4.4,\"reviews_count\":145,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"WooCommerce\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/woocommerce\\/\",\"icon\":null},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"SkyVerge\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/skyverge\\/\",\"icon\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/06\\/skyverge-wc-icon-b2vhw6.png\"},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"itthinx\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/itthinx\\/\",\"icon\":null},{\"title\":\"Klarna Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Payments_Pink.png\",\"excerpt\":\"With Klarna Payments\\u00a0you can choose the payment that you want, Pay Now, Pay Later or Slice It. No credit card numbers, no passwords, no worries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-payments\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnapayments\\/\",\"price\":\"$0.00\",\"hash\":\"a19c689325bc8ea63c620765dd54b33a\",\"slug\":\"klarna-payments-for-woocommerce\",\"id\":2754217,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Krokedil\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/krokedil\\/\",\"icon\":null},{\"title\":\"Viva Wallet Standard Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/04\\/Viva-Wallet-logo.png?w=374\",\"excerpt\":\"Integrate the Viva Wallet payment gateway with your WooCommerce store to process and sync your payments and help you sell more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/viva-wallet-for-woocommerce\\/?utm_source=extensionsscreen&utm_medium=product&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"7240a329-047f-4d8b-b7ec-ee3defd798bd\",\"slug\":\"viva-wallet-for-woocommerce\",\"id\":6137160,\"rating\":null,\"reviews_count\":null,\"vendor_name\":\"Viva Wallet\",\"vendor_url\":\"https:\\/\\/woocommerce.com\\/vendor\\/viva-wallet\\/\",\"icon\":null}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:19:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Thu, 10 Mar 2022 06:51:45 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"12966\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:4:\"x-rq\";a:1:{i:0;s:13:\"den2 0 4 9980\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:3:\"age\";a:1:{i:0;s:2:\"23\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}s:25:\"strict-transport-security\";a:1:{i:0;s:16:\"max-age=31536000\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(80594,'_transient_timeout_wcpay_currency_format','1646986974','no'),(80595,'_transient_wcpay_currency_format','a:151:{s:3:\"EUR\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_AT\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_BE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_LU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"el_CY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"en_IE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_EA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"es_IC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_BE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_BL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_GF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_GP\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_LU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_PM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_RE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_YT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"it_SM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"it_VA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nl_BE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pt_PT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sq_XK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"sr_Latn_ME\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"sr_Latn_XK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sv_AX\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sv_FI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tr_CY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:6:\"ast_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ca_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"de_DE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"el_GR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"es_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"et_EE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"eu_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fi_FI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_FR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fy_NL\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ga_IE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gl_ES\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"it_IT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"lb_LU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"lt_LT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"lv_LV\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"mt_MT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"nl_NL\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sk_SK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sl_SI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"AED\";a:2:{s:5:\"ar_AE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"AFN\";a:4:{s:5:\"fa_AF\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"ps_AF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"uz_AF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"XCD\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_AI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_DM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_GD\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_KN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_LC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_VC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"ALL\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sq_AL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"AMD\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"hy_AM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"AOA\";a:2:{s:5:\"pt_AO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"ARS\";a:2:{s:5:\"es_AR\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"USD\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_DG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_FM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_GU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_IO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_MP\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_PR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_PW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_TC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_UM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_VG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_VI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_ZW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_EC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"es_PA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_PR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_SV\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"es_US\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_HT\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nl_BQ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pt_TL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"qu_EC\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_US\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"haw_US\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"nd_ZW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sn_ZW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"AUD\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_CC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_CX\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_KI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NF\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_TV\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"AWG\";a:2:{s:5:\"nl_AW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"AZN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"az_AZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BAM\";a:4:{s:5:\"hr_BA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"sr_Latn_BA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"bs_BA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BBD\";a:2:{s:5:\"en_BB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BDT\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"bn_BD\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"XOF\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_BJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_ML\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_NE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_SN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_TG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"pt_GW\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:6:\"dyo_SN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"wo_SN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"BGN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"bg_BG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BHD\";a:2:{s:5:\"ar_BH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"BIF\";a:4:{s:5:\"en_BI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_BI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"rn_BI\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"BMD\";a:2:{s:5:\"en_BM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BND\";a:2:{s:5:\"ms_BN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BOB\";a:3:{s:5:\"es_BO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"qu_BO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BRL\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pt_BR\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BSD\";a:2:{s:5:\"en_BS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BTN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"dz_BT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BWP\";a:2:{s:5:\"en_BW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"BYN\";a:3:{s:5:\"ru_BY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"be_BY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"BZD\";a:2:{s:5:\"en_BZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CAD\";a:3:{s:5:\"en_CA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_CA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CDF\";a:4:{s:5:\"fr_CD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"sw_CD\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ln_CD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"XAF\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"en_CM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"es_GQ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_CM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_GA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_GQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_TD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"pt_GQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sg_CF\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CHF\";a:8:{s:5:\"de_CH\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"de_LI\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_CH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:6:\"gsw_LI\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"it_CH\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"gsw_CH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"rm_CH\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"NZD\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_PN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_TK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"mi_NZ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CLP\";a:2:{s:5:\"es_CL\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CNY\";a:4:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"bo_CN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ug_CN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"zh_CN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"COP\";a:2:{s:5:\"es_CO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CRC\";a:2:{s:5:\"es_CR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"CUC\";a:2:{s:5:\"es_CU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"CVE\";a:2:{s:5:\"pt_CV\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"ANG\";a:4:{s:5:\"en_SX\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"nl_CW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"nl_SX\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"CZK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"cs_CZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"DJF\";a:3:{s:5:\"ar_DJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_DJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"DKK\";a:4:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"da_DK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fo_FO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"kl_GL\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"DOP\";a:2:{s:5:\"es_DO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"DZD\";a:3:{s:5:\"ar_DZ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_DZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"EGP\";a:2:{s:5:\"ar_EG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MAD\";a:5:{s:5:\"ar_EH\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ar_MA\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"fr_MA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"tzm_MA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"ERN\";a:4:{s:5:\"ar_ER\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"en_ER\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ti_ER\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"ETB\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"am_ET\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"FJD\";a:2:{s:5:\"en_FJ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"FKP\";a:2:{s:5:\"en_FK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GBP\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_GG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_IM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_JE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ga_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"cy_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gd_GB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gv_IM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GEL\";a:3:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ka_GE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"os_GE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"GHS\";a:4:{s:5:\"en_GH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ak_GH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ee_GH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GIP\";a:2:{s:5:\"en_GI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GMD\";a:2:{s:5:\"en_GM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GNF\";a:2:{s:5:\"fr_GN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"GTQ\";a:2:{s:5:\"es_GT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"GYD\";a:2:{s:5:\"en_GY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"HKD\";a:3:{s:5:\"en_HK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:10:\"zh_Hant_HK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"HNL\";a:2:{s:5:\"es_HN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"HRK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"hr_HR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"HUF\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"hu_HU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"IDR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"id_ID\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"ILS\";a:4:{s:5:\"ar_IL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ar_PS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"he_IL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"INR\";a:19:{s:5:\"bn_IN\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ne_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ur_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"as_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"dz_BT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"gu_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"hi_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"kn_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"kok_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"mai_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ml_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"mr_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"or_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sa_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sd_PK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ta_IN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"te_IN\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"IQD\";a:3:{s:5:\"ar_IQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:6:\"ckb_IQ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"IRR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fa_IR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"ISK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"is_IS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"JMD\";a:2:{s:5:\"en_JM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"JOD\";a:3:{s:5:\"ar_JO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:5:\"ar_PS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"JPY\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"ja_JP\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"KES\";a:3:{s:5:\"en_KE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"sw_KE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"KGS\";a:3:{s:5:\"ru_KG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ky_KG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"KHR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"km_KH\";a:4:{s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"KMF\";a:3:{s:5:\"ar_KM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_KM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"KPW\";a:2:{s:5:\"ko_KP\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"KRW\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"ko_KR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"KWD\";a:2:{s:5:\"ar_KW\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"KYD\";a:2:{s:5:\"en_KY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"KZT\";a:3:{s:5:\"ru_KZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"kk_KZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"LAK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"lo_LA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"LBP\";a:2:{s:5:\"ar_LB\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"LKR\";a:3:{s:5:\"ta_LK\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"si_LK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"LRD\";a:2:{s:5:\"en_LR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"LSL\";a:2:{s:5:\"en_LS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"LYD\";a:2:{s:5:\"ar_LY\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"MDL\";a:2:{s:5:\"ro_MD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MGA\";a:4:{s:5:\"en_MG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_MG\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"mg_MG\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MKD\";a:3:{s:5:\"sq_MK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"mk_MK\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MMK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"my_MM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MNT\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"mn_MN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MOP\";a:3:{s:5:\"pt_MO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:10:\"zh_Hant_MO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MRU\";a:2:{s:5:\"ar_MR\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"MUR\";a:3:{s:5:\"en_MU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_MU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"MWK\";a:2:{s:5:\"en_MW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"MXN\";a:2:{s:5:\"es_MX\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"MYR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ms_MY\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"MZN\";a:2:{s:5:\"pt_MZ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"NAD\";a:2:{s:5:\"en_NA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"XPF\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_PF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_WF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"NGN\";a:3:{s:5:\"en_NG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"yo_NG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"NIO\";a:2:{s:5:\"es_NI\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"NOK\";a:5:{s:5:\"nb_SJ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"nb_NO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"nn_NO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"se_NO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"NPR\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ne_NP\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"OMR\";a:2:{s:5:\"ar_OM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"PEN\";a:3:{s:5:\"es_PE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"qu_PE\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"PGK\";a:2:{s:5:\"en_PG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"PHP\";a:4:{s:5:\"en_PH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"ceb_PH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:6:\"fil_PH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"PKR\";a:3:{s:5:\"en_PK\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"ur_PK\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"PLN\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"pl_PL\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"PYG\";a:2:{s:5:\"es_PY\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"QAR\";a:2:{s:5:\"ar_QA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"RON\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ro_RO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"RSD\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sr_RS\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"RUB\";a:5:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"ce_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ru_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:6:\"sah_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tt_RU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"RWF\";a:4:{s:5:\"en_RW\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_RW\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"rw_RW\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"SAR\";a:2:{s:5:\"ar_SA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SBD\";a:2:{s:5:\"en_SB\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SCR\";a:3:{s:5:\"en_SC\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"fr_SC\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SDG\";a:3:{s:5:\"ar_SD\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"en_SD\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SEK\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"sv_SE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"SGD\";a:4:{s:5:\"en_SG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ms_SG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"ta_SG\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SHP\";a:2:{s:5:\"en_SH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"SLL\";a:2:{s:5:\"en_SL\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"SOS\";a:3:{s:5:\"ar_SO\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"so_SO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"SRD\";a:2:{s:5:\"nl_SR\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SSP\";a:2:{s:5:\"en_SS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"STN\";a:2:{s:5:\"pt_ST\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"SYP\";a:3:{s:5:\"ar_SY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"fr_SY\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"SZL\";a:2:{s:5:\"en_SZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"THB\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"th_TH\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"TJS\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tg_TJ\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"TMT\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tk_TM\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"TND\";a:3:{s:5:\"ar_TN\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:5:\"fr_TN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;}}s:3:\"TOP\";a:3:{s:5:\"en_TO\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"to_TO\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"TRY\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"tr_TR\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"TTD\";a:2:{s:5:\"en_TT\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"TWD\";a:2:{s:7:\"zh_Hant\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"TZS\";a:3:{s:5:\"en_TZ\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"sw_TZ\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"UAH\";a:3:{s:5:\"ru_UA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"uk_UA\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"UGX\";a:3:{s:5:\"en_UG\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"sw_UG\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"UYU\";a:2:{s:5:\"es_UY\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"UZS\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"uz_AF\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"VES\";a:2:{s:5:\"es_VE\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}}s:3:\"VND\";a:2:{s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:5:\"vi_VN\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"VUV\";a:3:{s:5:\"en_VU\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}s:5:\"fr_VU\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;}}s:3:\"WST\";a:2:{s:5:\"en_WS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"YER\";a:2:{s:5:\"ar_YE\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;}}s:3:\"ZAR\";a:7:{s:5:\"en_LS\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_NA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"en_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"af_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;}s:5:\"xh_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:5:\"zu_ZA\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}s:3:\"ZMW\";a:2:{s:5:\"en_ZM\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}s:7:\"default\";a:4:{s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;}}}','no'),(80596,'_transient_timeout_wcpay_locale_info','1646986974','no'),(80597,'_transient_wcpay_locale_info','a:248:{s:2:\"AD\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ca_AD\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AE\";a:14:{s:13:\"currency_code\";s:3:\"AED\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_AE\";s:4:\"name\";s:27:\"United Arab Emirates dirham\";s:8:\"singular\";s:10:\"UAE dirham\";s:6:\"plural\";s:11:\"UAE dirhams\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_AE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AF\";a:14:{s:13:\"currency_code\";s:3:\"AFN\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"fa_AF\";s:4:\"name\";s:14:\"Afghan afghani\";s:8:\"singular\";s:14:\"Afghan Afghani\";s:6:\"plural\";s:15:\"Afghan Afghanis\";s:12:\"short_symbol\";s:2:\"؋\";s:7:\"locales\";a:4:{s:5:\"fa_AF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ps_AF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"uz_AF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AG\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AG\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"AI\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AI\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"AL\";a:14:{s:13:\"currency_code\";s:3:\"ALL\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sq_AL\";s:4:\"name\";s:12:\"Albanian lek\";s:8:\"singular\";s:12:\"Albanian lek\";s:6:\"plural\";s:14:\"Albanian lekë\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_AL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AM\";a:14:{s:13:\"currency_code\";s:3:\"AMD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hy_AM\";s:4:\"name\";s:13:\"Armenian dram\";s:8:\"singular\";s:13:\"Armenian dram\";s:6:\"plural\";s:14:\"Armenian drams\";s:12:\"short_symbol\";s:2:\"֏\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"hy_AM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AO\";a:14:{s:13:\"currency_code\";s:3:\"AOA\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_AO\";s:4:\"name\";s:14:\"Angolan kwanza\";s:8:\"singular\";s:14:\"Angolan kwanza\";s:6:\"plural\";s:15:\"Angolan kwanzas\";s:12:\"short_symbol\";s:2:\"Kz\";s:7:\"locales\";a:2:{s:5:\"pt_AO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AR\";a:14:{s:13:\"currency_code\";s:3:\"ARS\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_AR\";s:4:\"name\";s:14:\"Argentine peso\";s:8:\"singular\";s:14:\"Argentine peso\";s:6:\"plural\";s:15:\"Argentine pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_AR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"AS\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AS\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"AT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_AT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AU\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_AU\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"AW\";a:14:{s:13:\"currency_code\";s:3:\"AWG\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_AW\";s:4:\"name\";s:13:\"Aruban florin\";s:8:\"singular\";s:13:\"Aruban florin\";s:6:\"plural\";s:13:\"Aruban florin\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"nl_AW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"AX\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sv_AX\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"AZ\";a:14:{s:13:\"currency_code\";s:3:\"AZN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"az_AZ\";s:4:\"name\";s:17:\"Azerbaijani manat\";s:8:\"singular\";s:17:\"Azerbaijani manat\";s:6:\"plural\";s:18:\"Azerbaijani manats\";s:12:\"short_symbol\";s:3:\"₼\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"az_AZ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BA\";a:14:{s:13:\"currency_code\";s:3:\"BAM\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"bs_BA\";s:4:\"name\";s:39:\"Bosnia and Herzegovina convertible mark\";s:8:\"singular\";s:35:\"Bosnia-Herzegovina convertible mark\";s:6:\"plural\";s:36:\"Bosnia-Herzegovina convertible marks\";s:12:\"short_symbol\";s:2:\"KM\";s:7:\"locales\";a:4:{s:5:\"hr_BA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_BA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"bs_BA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BB\";a:14:{s:13:\"currency_code\";s:3:\"BBD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BB\";s:4:\"name\";s:16:\"Barbadian dollar\";s:8:\"singular\";s:16:\"Barbadian dollar\";s:6:\"plural\";s:17:\"Barbadian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BD\";a:14:{s:13:\"currency_code\";s:3:\"BDT\";s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"bn_BD\";s:4:\"name\";s:16:\"Bangladeshi taka\";s:8:\"singular\";s:16:\"Bangladeshi taka\";s:6:\"plural\";s:17:\"Bangladeshi takas\";s:12:\"short_symbol\";s:3:\"৳\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}s:5:\"bn_BD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}}}s:2:\"BE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_BE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BF\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_BF\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BG\";a:14:{s:13:\"currency_code\";s:3:\"BGN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"bg_BG\";s:4:\"name\";s:13:\"Bulgarian lev\";s:8:\"singular\";s:13:\"Bulgarian lev\";s:6:\"plural\";s:14:\"Bulgarian leva\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"bg_BG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BH\";a:14:{s:13:\"currency_code\";s:3:\"BHD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_BH\";s:4:\"name\";s:14:\"Bahraini dinar\";s:8:\"singular\";s:14:\"Bahraini dinar\";s:6:\"plural\";s:15:\"Bahraini dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_BH\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BI\";a:14:{s:13:\"currency_code\";s:3:\"BIF\";s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"rn_BI\";s:4:\"name\";s:15:\"Burundian franc\";s:8:\"singular\";s:15:\"Burundian franc\";s:6:\"plural\";s:16:\"Burundian francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"en_BI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_BI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"rn_BI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}}}s:2:\"BJ\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_BJ\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BL\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_BL\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BM\";a:14:{s:13:\"currency_code\";s:3:\"BMD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BM\";s:4:\"name\";s:16:\"Bermudian dollar\";s:8:\"singular\";s:15:\"Bermudan dollar\";s:6:\"plural\";s:16:\"Bermudan dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BN\";a:14:{s:13:\"currency_code\";s:3:\"BND\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ms_BN\";s:4:\"name\";s:13:\"Brunei dollar\";s:8:\"singular\";s:13:\"Brunei dollar\";s:6:\"plural\";s:14:\"Brunei dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"ms_BN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BO\";a:14:{s:13:\"currency_code\";s:3:\"BOB\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_BO\";s:4:\"name\";s:18:\"Bolivian boliviano\";s:8:\"singular\";s:18:\"Bolivian boliviano\";s:6:\"plural\";s:19:\"Bolivian bolivianos\";s:12:\"short_symbol\";s:2:\"Bs\";s:7:\"locales\";a:3:{s:5:\"es_BO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"qu_BO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BQ\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_BQ\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BR\";a:14:{s:13:\"currency_code\";s:3:\"BRL\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_BR\";s:4:\"name\";s:14:\"Brazilian real\";s:8:\"singular\";s:14:\"Brazilian real\";s:6:\"plural\";s:15:\"Brazilian reals\";s:12:\"short_symbol\";s:2:\"R$\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_BR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"BS\";a:14:{s:13:\"currency_code\";s:3:\"BSD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BS\";s:4:\"name\";s:15:\"Bahamian dollar\";s:8:\"singular\";s:15:\"Bahamian dollar\";s:6:\"plural\";s:16:\"Bahamian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BT\";a:14:{s:13:\"currency_code\";s:3:\"BTN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"dz_BT\";s:4:\"name\";s:18:\"Bhutanese ngultrum\";s:8:\"singular\";s:18:\"Bhutanese ngultrum\";s:6:\"plural\";s:19:\"Bhutanese ngultrums\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"dz_BT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BW\";a:14:{s:13:\"currency_code\";s:3:\"BWP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BW\";s:4:\"name\";s:13:\"Botswana pula\";s:8:\"singular\";s:14:\"Botswanan pula\";s:6:\"plural\";s:15:\"Botswanan pulas\";s:12:\"short_symbol\";s:1:\"P\";s:7:\"locales\";a:2:{s:5:\"en_BW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"BY\";a:14:{s:13:\"currency_code\";s:3:\"BYN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"be_BY\";s:4:\"name\";s:16:\"Belarusian ruble\";s:8:\"singular\";s:16:\"Belarusian ruble\";s:6:\"plural\";s:17:\"Belarusian rubles\";s:12:\"short_symbol\";s:3:\"р.\";s:7:\"locales\";a:3:{s:5:\"ru_BY\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"be_BY\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"BZ\";a:14:{s:13:\"currency_code\";s:3:\"BZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_BZ\";s:4:\"name\";s:13:\"Belize dollar\";s:8:\"singular\";s:13:\"Belize dollar\";s:6:\"plural\";s:14:\"Belize dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_BZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CA\";a:14:{s:13:\"currency_code\";s:3:\"CAD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CA\";s:4:\"name\";s:15:\"Canadian dollar\";s:8:\"singular\";s:15:\"Canadian dollar\";s:6:\"plural\";s:16:\"Canadian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:3:{s:5:\"en_CA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CC\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CC\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CD\";a:14:{s:13:\"currency_code\";s:3:\"CDF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_CD\";s:4:\"name\";s:15:\"Congolese franc\";s:8:\"singular\";s:15:\"Congolese franc\";s:6:\"plural\";s:16:\"Congolese francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_CD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sw_CD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ln_CD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CF\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CF\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CG\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CG\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CH\";a:14:{s:13:\"currency_code\";s:3:\"CHF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_CH\";s:4:\"name\";s:11:\"Swiss franc\";s:8:\"singular\";s:11:\"Swiss franc\";s:6:\"plural\";s:12:\"Swiss francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:8:{s:5:\"de_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_CH\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"gsw_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"gsw_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"rm_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CI\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CI\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CK\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CK\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CL\";a:14:{s:13:\"currency_code\";s:3:\"CLP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CL\";s:4:\"name\";s:12:\"Chilean peso\";s:8:\"singular\";s:12:\"Chilean peso\";s:6:\"plural\";s:13:\"Chilean pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_CL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CM\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_CM\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CN\";a:14:{s:13:\"currency_code\";s:3:\"CNY\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"zh_CN\";s:4:\"name\";s:12:\"Chinese yuan\";s:8:\"singular\";s:12:\"Chinese yuan\";s:6:\"plural\";s:12:\"Chinese yuan\";s:12:\"short_symbol\";s:2:\"¥\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"bo_CN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ug_CN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"zh_CN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CO\";a:14:{s:13:\"currency_code\";s:3:\"COP\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CO\";s:4:\"name\";s:14:\"Colombian peso\";s:8:\"singular\";s:14:\"Colombian peso\";s:6:\"plural\";s:15:\"Colombian pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_CO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CR\";a:14:{s:13:\"currency_code\";s:3:\"CRC\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CR\";s:4:\"name\";s:18:\"Costa Rican colón\";s:8:\"singular\";s:18:\"Costa Rican colón\";s:6:\"plural\";s:19:\"Costa Rican colóns\";s:12:\"short_symbol\";s:3:\"₡\";s:7:\"locales\";a:2:{s:5:\"es_CR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CU\";a:14:{s:13:\"currency_code\";s:3:\"CUC\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_CU\";s:4:\"name\";s:22:\"Cuban convertible peso\";s:8:\"singular\";s:22:\"Cuban convertible peso\";s:6:\"plural\";s:23:\"Cuban convertible pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_CU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CV\";a:14:{s:13:\"currency_code\";s:3:\"CVE\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_CV\";s:4:\"name\";s:19:\"Cape Verdean escudo\";s:8:\"singular\";s:19:\"Cape Verdean escudo\";s:6:\"plural\";s:20:\"Cape Verdean escudos\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"pt_CV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CW\";a:14:{s:13:\"currency_code\";s:3:\"ANG\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_CW\";s:4:\"name\";s:29:\"Netherlands Antillean guilder\";s:8:\"singular\";s:29:\"Netherlands Antillean guilder\";s:6:\"plural\";s:30:\"Netherlands Antillean guilders\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"en_SX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_CW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nl_SX\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"CX\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_CX\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"CY\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"el_CY\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"CZ\";a:14:{s:13:\"currency_code\";s:3:\"CZK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"cs_CZ\";s:4:\"name\";s:12:\"Czech koruna\";s:8:\"singular\";s:12:\"Czech koruna\";s:6:\"plural\";s:13:\"Czech korunas\";s:12:\"short_symbol\";s:3:\"Kč\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"cs_CZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"DE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_DE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"DG\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_DG\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"DJ\";a:14:{s:13:\"currency_code\";s:3:\"DJF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_DJ\";s:4:\"name\";s:16:\"Djiboutian franc\";s:8:\"singular\";s:16:\"Djiboutian franc\";s:6:\"plural\";s:17:\"Djiboutian francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_DJ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_DJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"DK\";a:14:{s:13:\"currency_code\";s:3:\"DKK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"da_DK\";s:4:\"name\";s:12:\"Danish krone\";s:8:\"singular\";s:12:\"Danish krone\";s:6:\"plural\";s:13:\"Danish kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"da_DK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fo_FO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kl_GL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"DM\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_DM\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"DO\";a:14:{s:13:\"currency_code\";s:3:\"DOP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_DO\";s:4:\"name\";s:14:\"Dominican peso\";s:8:\"singular\";s:14:\"Dominican peso\";s:6:\"plural\";s:15:\"Dominican pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_DO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"DZ\";a:14:{s:13:\"currency_code\";s:3:\"DZD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_DZ\";s:4:\"name\";s:14:\"Algerian dinar\";s:8:\"singular\";s:14:\"Algerian dinar\";s:6:\"plural\";s:15:\"Algerian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_DZ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_DZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"EA\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_EA\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"EC\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_EC\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"EE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"et_EE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"EG\";a:14:{s:13:\"currency_code\";s:3:\"EGP\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_EG\";s:4:\"name\";s:14:\"Egyptian pound\";s:8:\"singular\";s:14:\"Egyptian pound\";s:6:\"plural\";s:15:\"Egyptian pounds\";s:12:\"short_symbol\";s:3:\"E£\";s:7:\"locales\";a:2:{s:5:\"ar_EG\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"EH\";a:14:{s:13:\"currency_code\";s:3:\"MAD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_EH\";s:4:\"name\";s:15:\"Moroccan dirham\";s:8:\"singular\";s:15:\"Moroccan dirham\";s:6:\"plural\";s:16:\"Moroccan dirhams\";s:12:\"short_symbol\";N;s:7:\"locales\";a:5:{s:5:\"ar_EH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ar_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"tzm_MA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ER\";a:14:{s:13:\"currency_code\";s:3:\"ERN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ti_ER\";s:4:\"name\";s:14:\"Eritrean nakfa\";s:8:\"singular\";s:14:\"Eritrean nakfa\";s:6:\"plural\";s:15:\"Eritrean nakfas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"ar_ER\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_ER\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ti_ER\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ES\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_ES\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ET\";a:14:{s:13:\"currency_code\";s:3:\"ETB\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"am_ET\";s:4:\"name\";s:14:\"Ethiopian birr\";s:8:\"singular\";s:14:\"Ethiopian birr\";s:6:\"plural\";s:15:\"Ethiopian birrs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"am_ET\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FI\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fi_FI\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"FJ\";a:14:{s:13:\"currency_code\";s:3:\"FJD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_FJ\";s:4:\"name\";s:13:\"Fijian dollar\";s:8:\"singular\";s:13:\"Fijian dollar\";s:6:\"plural\";s:14:\"Fijian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_FJ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FK\";a:14:{s:13:\"currency_code\";s:3:\"FKP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_FK\";s:4:\"name\";s:22:\"Falkland Islands pound\";s:8:\"singular\";s:22:\"Falkland Islands pound\";s:6:\"plural\";s:23:\"Falkland Islands pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:2:{s:5:\"en_FK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FM\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_FM\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"FO\";a:14:{s:13:\"currency_code\";s:3:\"DKK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fo_FO\";s:4:\"name\";s:12:\"Danish krone\";s:8:\"singular\";s:12:\"Danish krone\";s:6:\"plural\";s:13:\"Danish kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"da_DK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fo_FO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kl_GL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"FR\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_FR\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GA\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GA\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GB\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"oz\";s:14:\"dimension_unit\";s:4:\"foot\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GB\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GD\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GD\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GE\";a:14:{s:13:\"currency_code\";s:3:\"GEL\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ka_GE\";s:4:\"name\";s:13:\"Georgian lari\";s:8:\"singular\";s:13:\"Georgian lari\";s:6:\"plural\";s:14:\"Georgian laris\";s:12:\"short_symbol\";s:3:\"₾\";s:7:\"locales\";a:3:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ka_GE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"os_GE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"GF\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GF\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GG\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GG\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GH\";a:14:{s:13:\"currency_code\";s:3:\"GHS\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ak_GH\";s:4:\"name\";s:10:\"Ghana cedi\";s:8:\"singular\";s:13:\"Ghanaian cedi\";s:6:\"plural\";s:14:\"Ghanaian cedis\";s:12:\"short_symbol\";s:5:\"GH₵\";s:7:\"locales\";a:4:{s:5:\"en_GH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ak_GH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ee_GH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GI\";a:14:{s:13:\"currency_code\";s:3:\"GIP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GI\";s:4:\"name\";s:15:\"Gibraltar pound\";s:8:\"singular\";s:15:\"Gibraltar pound\";s:6:\"plural\";s:16:\"Gibraltar pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:2:{s:5:\"en_GI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GL\";a:14:{s:13:\"currency_code\";s:3:\"DKK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"kl_GL\";s:4:\"name\";s:12:\"Danish krone\";s:8:\"singular\";s:12:\"Danish krone\";s:6:\"plural\";s:13:\"Danish kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:4:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"da_DK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fo_FO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kl_GL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GM\";a:14:{s:13:\"currency_code\";s:3:\"GMD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GM\";s:4:\"name\";s:14:\"Gambian dalasi\";s:8:\"singular\";s:14:\"Gambian dalasi\";s:6:\"plural\";s:15:\"Gambian dalasis\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_GM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GN\";a:14:{s:13:\"currency_code\";s:3:\"GNF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GN\";s:4:\"name\";s:13:\"Guinean franc\";s:8:\"singular\";s:13:\"Guinean franc\";s:6:\"plural\";s:14:\"Guinean francs\";s:12:\"short_symbol\";s:2:\"FG\";s:7:\"locales\";a:2:{s:5:\"fr_GN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GP\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_GP\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GQ\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_GQ\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GR\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"el_GR\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"GT\";a:14:{s:13:\"currency_code\";s:3:\"GTQ\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_GT\";s:4:\"name\";s:18:\"Guatemalan quetzal\";s:8:\"singular\";s:18:\"Guatemalan quetzal\";s:6:\"plural\";s:19:\"Guatemalan quetzals\";s:12:\"short_symbol\";s:1:\"Q\";s:7:\"locales\";a:2:{s:5:\"es_GT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"GU\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GU\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"GW\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_GW\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"GY\";a:14:{s:13:\"currency_code\";s:3:\"GYD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_GY\";s:4:\"name\";s:15:\"Guyanese dollar\";s:8:\"singular\";s:16:\"Guyanaese dollar\";s:6:\"plural\";s:17:\"Guyanaese dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_GY\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"HK\";a:14:{s:13:\"currency_code\";s:3:\"HKD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:10:\"zh_Hant_HK\";s:4:\"name\";s:16:\"Hong Kong dollar\";s:8:\"singular\";s:16:\"Hong Kong dollar\";s:6:\"plural\";s:17:\"Hong Kong dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:3:{s:5:\"en_HK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:10:\"zh_Hant_HK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"HN\";a:14:{s:13:\"currency_code\";s:3:\"HNL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_HN\";s:4:\"name\";s:16:\"Honduran lempira\";s:8:\"singular\";s:16:\"Honduran lempira\";s:6:\"plural\";s:17:\"Honduran lempiras\";s:12:\"short_symbol\";s:1:\"L\";s:7:\"locales\";a:2:{s:5:\"es_HN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"HR\";a:14:{s:13:\"currency_code\";s:3:\"HRK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hr_HR\";s:4:\"name\";s:13:\"Croatian kuna\";s:8:\"singular\";s:13:\"Croatian kuna\";s:6:\"plural\";s:14:\"Croatian kunas\";s:12:\"short_symbol\";s:2:\"kn\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"hr_HR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"HT\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_HT\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"HU\";a:14:{s:13:\"currency_code\";s:3:\"HUF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hu_HU\";s:4:\"name\";s:16:\"Hungarian forint\";s:8:\"singular\";s:16:\"Hungarian forint\";s:6:\"plural\";s:17:\"Hungarian forints\";s:12:\"short_symbol\";s:2:\"Ft\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"hu_HU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IC\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_IC\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ID\";a:14:{s:13:\"currency_code\";s:3:\"IDR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"id_ID\";s:4:\"name\";s:17:\"Indonesian rupiah\";s:8:\"singular\";s:17:\"Indonesian rupiah\";s:6:\"plural\";s:18:\"Indonesian rupiahs\";s:12:\"short_symbol\";s:2:\"Rp\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"id_ID\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_IE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IL\";a:14:{s:13:\"currency_code\";s:3:\"ILS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"he_IL\";s:4:\"name\";s:18:\"Israeli new shekel\";s:8:\"singular\";s:18:\"Israeli new shekel\";s:6:\"plural\";s:19:\"Israeli new shekels\";s:12:\"short_symbol\";s:3:\"₪\";s:7:\"locales\";a:4:{s:5:\"ar_IL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ar_PS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"he_IL\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IM\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_IM\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IN\";a:14:{s:13:\"currency_code\";s:3:\"INR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"hi_IN\";s:4:\"name\";s:12:\"Indian rupee\";s:8:\"singular\";s:12:\"Indian rupee\";s:6:\"plural\";s:13:\"Indian rupees\";s:12:\"short_symbol\";s:3:\"₹\";s:7:\"locales\";a:19:{s:5:\"bn_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}s:5:\"en_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ne_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ur_IN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"as_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"dz_BT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gu_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"hi_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"kn_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"kok_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"mai_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ml_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mr_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"or_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sa_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sd_PK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ta_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"te_IN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IO\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_IO\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"IQ\";a:14:{s:13:\"currency_code\";s:3:\"IQD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_IQ\";s:4:\"name\";s:11:\"Iraqi dinar\";s:8:\"singular\";s:11:\"Iraqi dinar\";s:6:\"plural\";s:12:\"Iraqi dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_IQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ckb_IQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IR\";a:14:{s:13:\"currency_code\";s:3:\"IRR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"fa_IR\";s:4:\"name\";s:12:\"Iranian rial\";s:8:\"singular\";s:12:\"Iranian rial\";s:6:\"plural\";s:13:\"Iranian rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fa_IR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"IS\";a:14:{s:13:\"currency_code\";s:3:\"ISK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"is_IS\";s:4:\"name\";s:16:\"Icelandic króna\";s:8:\"singular\";s:16:\"Icelandic króna\";s:6:\"plural\";s:17:\"Icelandic krónur\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"is_IS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"IT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"it_IT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"JE\";a:14:{s:13:\"currency_code\";s:3:\"GBP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_JE\";s:4:\"name\";s:14:\"Pound sterling\";s:8:\"singular\";s:13:\"British pound\";s:6:\"plural\";s:14:\"British pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:9:{s:5:\"en_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_JE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ga_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"cy_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gd_GB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gv_IM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"JM\";a:14:{s:13:\"currency_code\";s:3:\"JMD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_JM\";s:4:\"name\";s:15:\"Jamaican dollar\";s:8:\"singular\";s:15:\"Jamaican dollar\";s:6:\"plural\";s:16:\"Jamaican dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_JM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"JO\";a:14:{s:13:\"currency_code\";s:3:\"JOD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_JO\";s:4:\"name\";s:15:\"Jordanian dinar\";s:8:\"singular\";s:15:\"Jordanian dinar\";s:6:\"plural\";s:16:\"Jordanian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_JO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ar_PS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"JP\";a:14:{s:13:\"currency_code\";s:3:\"JPY\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ja_JP\";s:4:\"name\";s:12:\"Japanese yen\";s:8:\"singular\";s:12:\"Japanese yen\";s:6:\"plural\";s:12:\"Japanese yen\";s:12:\"short_symbol\";s:2:\"¥\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ja_JP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KE\";a:14:{s:13:\"currency_code\";s:3:\"KES\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_KE\";s:4:\"name\";s:15:\"Kenyan shilling\";s:8:\"singular\";s:15:\"Kenyan shilling\";s:6:\"plural\";s:16:\"Kenyan shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_KE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sw_KE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KG\";a:14:{s:13:\"currency_code\";s:3:\"KGS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ky_KG\";s:4:\"name\";s:15:\"Kyrgyzstani som\";s:8:\"singular\";s:14:\"Kyrgystani som\";s:6:\"plural\";s:15:\"Kyrgystani soms\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ru_KG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ky_KG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"KH\";a:14:{s:13:\"currency_code\";s:3:\"KHR\";s:12:\"currency_pos\";s:5:\"right\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"km_KH\";s:4:\"name\";s:14:\"Cambodian riel\";s:8:\"singular\";s:14:\"Cambodian riel\";s:6:\"plural\";s:15:\"Cambodian riels\";s:12:\"short_symbol\";s:3:\"៛\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}s:5:\"km_KH\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:5:\"right\";}}}s:2:\"KI\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_KI\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KM\";a:14:{s:13:\"currency_code\";s:3:\"KMF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_KM\";s:4:\"name\";s:14:\"Comorian franc\";s:8:\"singular\";s:14:\"Comorian franc\";s:6:\"plural\";s:15:\"Comorian francs\";s:12:\"short_symbol\";s:2:\"CF\";s:7:\"locales\";a:3:{s:5:\"ar_KM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_KM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"KN\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_KN\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KP\";a:14:{s:13:\"currency_code\";s:3:\"KPW\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ko_KP\";s:4:\"name\";s:16:\"North Korean won\";s:8:\"singular\";s:16:\"North Korean won\";s:6:\"plural\";s:16:\"North Korean won\";s:12:\"short_symbol\";s:3:\"₩\";s:7:\"locales\";a:2:{s:5:\"ko_KP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KR\";a:14:{s:13:\"currency_code\";s:3:\"KRW\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ko_KR\";s:4:\"name\";s:16:\"South Korean won\";s:8:\"singular\";s:16:\"South Korean won\";s:6:\"plural\";s:16:\"South Korean won\";s:12:\"short_symbol\";s:3:\"₩\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ko_KR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KW\";a:14:{s:13:\"currency_code\";s:3:\"KWD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_KW\";s:4:\"name\";s:13:\"Kuwaiti dinar\";s:8:\"singular\";s:13:\"Kuwaiti dinar\";s:6:\"plural\";s:14:\"Kuwaiti dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_KW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"KY\";a:14:{s:13:\"currency_code\";s:3:\"KYD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_KY\";s:4:\"name\";s:21:\"Cayman Islands dollar\";s:8:\"singular\";s:21:\"Cayman Islands dollar\";s:6:\"plural\";s:22:\"Cayman Islands dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_KY\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"KZ\";a:14:{s:13:\"currency_code\";s:3:\"KZT\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ru_KZ\";s:4:\"name\";s:17:\"Kazakhstani tenge\";s:8:\"singular\";s:17:\"Kazakhstani tenge\";s:6:\"plural\";s:18:\"Kazakhstani tenges\";s:12:\"short_symbol\";s:3:\"₸\";s:7:\"locales\";a:3:{s:5:\"ru_KZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"kk_KZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LA\";a:14:{s:13:\"currency_code\";s:3:\"LAK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"lo_LA\";s:4:\"name\";s:7:\"Lao kip\";s:8:\"singular\";s:11:\"Laotian kip\";s:6:\"plural\";s:12:\"Laotian kips\";s:12:\"short_symbol\";s:3:\"₭\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"lo_LA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LB\";a:14:{s:13:\"currency_code\";s:3:\"LBP\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_LB\";s:4:\"name\";s:14:\"Lebanese pound\";s:8:\"singular\";s:14:\"Lebanese pound\";s:6:\"plural\";s:15:\"Lebanese pounds\";s:12:\"short_symbol\";s:3:\"L£\";s:7:\"locales\";a:2:{s:5:\"ar_LB\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LC\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_LC\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LI\";a:14:{s:13:\"currency_code\";s:3:\"CHF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"de_LI\";s:4:\"name\";s:11:\"Swiss franc\";s:8:\"singular\";s:11:\"Swiss franc\";s:6:\"plural\";s:12:\"Swiss francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:8:{s:5:\"de_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_CH\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"gsw_LI\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"gsw_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"rm_CH\";a:4:{s:12:\"thousand_sep\";s:1:\"\'\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LK\";a:14:{s:13:\"currency_code\";s:3:\"LKR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"si_LK\";s:4:\"name\";s:16:\"Sri Lankan rupee\";s:8:\"singular\";s:16:\"Sri Lankan rupee\";s:6:\"plural\";s:17:\"Sri Lankan rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:3:{s:5:\"ta_LK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"si_LK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LR\";a:14:{s:13:\"currency_code\";s:3:\"LRD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_LR\";s:4:\"name\";s:15:\"Liberian dollar\";s:8:\"singular\";s:15:\"Liberian dollar\";s:6:\"plural\";s:16:\"Liberian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_LR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LS\";a:14:{s:13:\"currency_code\";s:3:\"LSL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_LS\";s:4:\"name\";s:12:\"Lesotho loti\";s:8:\"singular\";s:12:\"Lesotho loti\";s:6:\"plural\";s:13:\"Lesotho lotis\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_LS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"LT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"lt_LT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LU\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_LU\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LV\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"lv_LV\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"LY\";a:14:{s:13:\"currency_code\";s:3:\"LYD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_LY\";s:4:\"name\";s:12:\"Libyan dinar\";s:8:\"singular\";s:12:\"Libyan dinar\";s:6:\"plural\";s:13:\"Libyan dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_LY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MA\";a:14:{s:13:\"currency_code\";s:3:\"MAD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_MA\";s:4:\"name\";s:15:\"Moroccan dirham\";s:8:\"singular\";s:15:\"Moroccan dirham\";s:6:\"plural\";s:16:\"Moroccan dirhams\";s:12:\"short_symbol\";N;s:7:\"locales\";a:5:{s:5:\"ar_EH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ar_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_MA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:6:\"tzm_MA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MC\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_MC\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MD\";a:14:{s:13:\"currency_code\";s:3:\"MDL\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ro_MD\";s:4:\"name\";s:12:\"Moldovan leu\";s:8:\"singular\";s:12:\"Moldovan leu\";s:6:\"plural\";s:12:\"Moldovan lei\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ro_MD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ME\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:10:\"sr_Latn_ME\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MF\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_MF\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MG\";a:14:{s:13:\"currency_code\";s:3:\"MGA\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mg_MG\";s:4:\"name\";s:15:\"Malagasy ariary\";s:8:\"singular\";s:15:\"Malagasy ariary\";s:6:\"plural\";s:17:\"Malagasy ariaries\";s:12:\"short_symbol\";s:2:\"Ar\";s:7:\"locales\";a:4:{s:5:\"en_MG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_MG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mg_MG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MH\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MH\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MK\";a:14:{s:13:\"currency_code\";s:3:\"MKD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mk_MK\";s:4:\"name\";s:16:\"Macedonian denar\";s:8:\"singular\";s:16:\"Macedonian denar\";s:6:\"plural\";s:17:\"Macedonian denari\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"sq_MK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mk_MK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ML\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_ML\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MM\";a:14:{s:13:\"currency_code\";s:3:\"MMK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"my_MM\";s:4:\"name\";s:12:\"Burmese kyat\";s:8:\"singular\";s:12:\"Myanmar kyat\";s:6:\"plural\";s:13:\"Myanmar kyats\";s:12:\"short_symbol\";s:1:\"K\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"my_MM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MN\";a:14:{s:13:\"currency_code\";s:3:\"MNT\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mn_MN\";s:4:\"name\";s:18:\"Mongolian tögrög\";s:8:\"singular\";s:16:\"Mongolian tugrik\";s:6:\"plural\";s:17:\"Mongolian tugriks\";s:12:\"short_symbol\";s:3:\"₮\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"mn_MN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MO\";a:14:{s:13:\"currency_code\";s:3:\"MOP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:10:\"zh_Hant_MO\";s:4:\"name\";s:15:\"Macanese pataca\";s:8:\"singular\";s:15:\"Macanese pataca\";s:6:\"plural\";s:16:\"Macanese patacas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"pt_MO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"zh_Hant_MO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MP\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MP\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"MQ\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_MQ\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MR\";a:14:{s:13:\"currency_code\";s:3:\"MRU\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_MR\";s:4:\"name\";s:19:\"Mauritanian ouguiya\";s:8:\"singular\";s:19:\"Mauritanian ouguiya\";s:6:\"plural\";s:20:\"Mauritanian ouguiyas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_MR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MS\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MS\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"mt_MT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"MU\";a:14:{s:13:\"currency_code\";s:3:\"MUR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MU\";s:4:\"name\";s:15:\"Mauritian rupee\";s:8:\"singular\";s:15:\"Mauritian rupee\";s:6:\"plural\";s:16:\"Mauritian rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:3:{s:5:\"en_MU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_MU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MV\";a:14:{s:13:\"currency_code\";s:3:\"MVR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:0:\"\";s:4:\"name\";s:17:\"Maldivian rufiyaa\";s:8:\"singular\";s:17:\"Maldivian rufiyaa\";s:6:\"plural\";s:18:\"Maldivian rufiyaas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:1:{s:7:\"default\";a:0:{}}}s:2:\"MW\";a:14:{s:13:\"currency_code\";s:3:\"MWK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_MW\";s:4:\"name\";s:15:\"Malawian kwacha\";s:8:\"singular\";s:15:\"Malawian kwacha\";s:6:\"plural\";s:16:\"Malawian kwachas\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_MW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MX\";a:14:{s:13:\"currency_code\";s:3:\"MXN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_MX\";s:4:\"name\";s:12:\"Mexican peso\";s:8:\"singular\";s:12:\"Mexican peso\";s:6:\"plural\";s:13:\"Mexican pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_MX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MY\";a:14:{s:13:\"currency_code\";s:3:\"MYR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ms_MY\";s:4:\"name\";s:17:\"Malaysian ringgit\";s:8:\"singular\";s:17:\"Malaysian ringgit\";s:6:\"plural\";s:18:\"Malaysian ringgits\";s:12:\"short_symbol\";s:2:\"RM\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ms_MY\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"MZ\";a:14:{s:13:\"currency_code\";s:3:\"MZN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_MZ\";s:4:\"name\";s:18:\"Mozambican metical\";s:8:\"singular\";s:18:\"Mozambican metical\";s:6:\"plural\";s:19:\"Mozambican meticals\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"pt_MZ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NA\";a:14:{s:13:\"currency_code\";s:3:\"NAD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NA\";s:4:\"name\";s:15:\"Namibian dollar\";s:8:\"singular\";s:15:\"Namibian dollar\";s:6:\"plural\";s:16:\"Namibian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_NA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NC\";a:14:{s:13:\"currency_code\";s:3:\"XPF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_NC\";s:4:\"name\";s:9:\"CFP franc\";s:8:\"singular\";s:9:\"CFP franc\";s:6:\"plural\";s:10:\"CFP francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_WF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NE\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_NE\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"NF\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NF\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NG\";a:14:{s:13:\"currency_code\";s:3:\"NGN\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NG\";s:4:\"name\";s:14:\"Nigerian naira\";s:8:\"singular\";s:14:\"Nigerian naira\";s:6:\"plural\";s:15:\"Nigerian nairas\";s:12:\"short_symbol\";s:3:\"₦\";s:7:\"locales\";a:3:{s:5:\"en_NG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"yo_NG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NI\";a:14:{s:13:\"currency_code\";s:3:\"NIO\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_NI\";s:4:\"name\";s:19:\"Nicaraguan córdoba\";s:8:\"singular\";s:19:\"Nicaraguan córdoba\";s:6:\"plural\";s:20:\"Nicaraguan córdobas\";s:12:\"short_symbol\";s:2:\"C$\";s:7:\"locales\";a:2:{s:5:\"es_NI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NL\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_NL\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NO\";a:14:{s:13:\"currency_code\";s:3:\"NOK\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nb_NO\";s:4:\"name\";s:15:\"Norwegian krone\";s:8:\"singular\";s:15:\"Norwegian krone\";s:6:\"plural\";s:16:\"Norwegian kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:5:{s:5:\"nb_SJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nb_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nn_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"se_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"NP\";a:14:{s:13:\"currency_code\";s:3:\"NPR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ne_NP\";s:4:\"name\";s:14:\"Nepalese rupee\";s:8:\"singular\";s:14:\"Nepalese rupee\";s:6:\"plural\";s:15:\"Nepalese rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ne_NP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"NR\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NR\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"NU\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NU\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"NZ\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_NZ\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"OM\";a:14:{s:13:\"currency_code\";s:3:\"OMR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_OM\";s:4:\"name\";s:10:\"Omani rial\";s:8:\"singular\";s:10:\"Omani rial\";s:6:\"plural\";s:11:\"Omani rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_OM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PA\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PA\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PE\";a:14:{s:13:\"currency_code\";s:3:\"PEN\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PE\";s:4:\"name\";s:3:\"Sol\";s:8:\"singular\";s:12:\"Peruvian sol\";s:6:\"plural\";s:14:\"Peruvian soles\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"es_PE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"qu_PE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PF\";a:14:{s:13:\"currency_code\";s:3:\"XPF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_PF\";s:4:\"name\";s:9:\"CFP franc\";s:8:\"singular\";s:9:\"CFP franc\";s:6:\"plural\";s:10:\"CFP francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_WF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PG\";a:14:{s:13:\"currency_code\";s:3:\"PGK\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PG\";s:4:\"name\";s:22:\"Papua New Guinean kina\";s:8:\"singular\";s:22:\"Papua New Guinean kina\";s:6:\"plural\";s:22:\"Papua New Guinean kina\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_PG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"PH\";a:14:{s:13:\"currency_code\";s:3:\"PHP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PH\";s:4:\"name\";s:15:\"Philippine peso\";s:8:\"singular\";s:15:\"Philippine piso\";s:6:\"plural\";s:16:\"Philippine pisos\";s:12:\"short_symbol\";s:3:\"₱\";s:7:\"locales\";a:4:{s:5:\"en_PH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"ceb_PH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"fil_PH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"PK\";a:14:{s:13:\"currency_code\";s:3:\"PKR\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ur_PK\";s:4:\"name\";s:15:\"Pakistani rupee\";s:8:\"singular\";s:15:\"Pakistani rupee\";s:6:\"plural\";s:16:\"Pakistani rupees\";s:12:\"short_symbol\";s:2:\"Rs\";s:7:\"locales\";a:3:{s:5:\"en_PK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ur_PK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PL\";a:14:{s:13:\"currency_code\";s:3:\"PLN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pl_PL\";s:4:\"name\";s:13:\"Polish złoty\";s:8:\"singular\";s:12:\"Polish zloty\";s:6:\"plural\";s:13:\"Polish zlotys\";s:12:\"short_symbol\";s:3:\"zł\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pl_PL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PM\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_PM\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PN\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PN\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PR\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PR\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PS\";a:14:{s:13:\"currency_code\";s:3:\"JOD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_PS\";s:4:\"name\";s:15:\"Jordanian dinar\";s:8:\"singular\";s:15:\"Jordanian dinar\";s:6:\"plural\";s:16:\"Jordanian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_JO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ar_PS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_PT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"PW\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_PW\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"PY\";a:14:{s:13:\"currency_code\";s:3:\"PYG\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_PY\";s:4:\"name\";s:19:\"Paraguayan guaraní\";s:8:\"singular\";s:18:\"Paraguayan guarani\";s:6:\"plural\";s:19:\"Paraguayan guaranis\";s:12:\"short_symbol\";s:3:\"₲\";s:7:\"locales\";a:2:{s:5:\"es_PY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"QA\";a:14:{s:13:\"currency_code\";s:3:\"QAR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_QA\";s:4:\"name\";s:12:\"Qatari riyal\";s:8:\"singular\";s:11:\"Qatari rial\";s:6:\"plural\";s:12:\"Qatari rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_QA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RE\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_RE\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RO\";a:14:{s:13:\"currency_code\";s:3:\"RON\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ro_RO\";s:4:\"name\";s:12:\"Romanian leu\";s:8:\"singular\";s:12:\"Romanian leu\";s:6:\"plural\";s:12:\"Romanian lei\";s:12:\"short_symbol\";s:3:\"lei\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ro_RO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RS\";a:14:{s:13:\"currency_code\";s:3:\"RSD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sr_RS\";s:4:\"name\";s:13:\"Serbian dinar\";s:8:\"singular\";s:13:\"Serbian dinar\";s:6:\"plural\";s:14:\"Serbian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sr_RS\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RU\";a:14:{s:13:\"currency_code\";s:3:\"RUB\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"ru_RU\";s:4:\"name\";s:13:\"Russian ruble\";s:8:\"singular\";s:13:\"Russian ruble\";s:6:\"plural\";s:14:\"Russian rubles\";s:12:\"short_symbol\";s:3:\"₽\";s:7:\"locales\";a:5:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ce_RU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ru_RU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"sah_RU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tt_RU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"RW\";a:14:{s:13:\"currency_code\";s:3:\"RWF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"rw_RW\";s:4:\"name\";s:13:\"Rwandan franc\";s:8:\"singular\";s:13:\"Rwandan franc\";s:6:\"plural\";s:14:\"Rwandan francs\";s:12:\"short_symbol\";s:2:\"RF\";s:7:\"locales\";a:4:{s:5:\"en_RW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_RW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"rw_RW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SA\";a:14:{s:13:\"currency_code\";s:3:\"SAR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_SA\";s:4:\"name\";s:11:\"Saudi riyal\";s:8:\"singular\";s:11:\"Saudi riyal\";s:6:\"plural\";s:12:\"Saudi riyals\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_SA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SB\";a:14:{s:13:\"currency_code\";s:3:\"SBD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SB\";s:4:\"name\";s:22:\"Solomon Islands dollar\";s:8:\"singular\";s:22:\"Solomon Islands dollar\";s:6:\"plural\";s:23:\"Solomon Islands dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_SB\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SC\";a:14:{s:13:\"currency_code\";s:3:\"SCR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_SC\";s:4:\"name\";s:17:\"Seychellois rupee\";s:8:\"singular\";s:17:\"Seychellois rupee\";s:6:\"plural\";s:18:\"Seychellois rupees\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_SC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_SC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SD\";a:14:{s:13:\"currency_code\";s:3:\"SDG\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_SD\";s:4:\"name\";s:14:\"Sudanese pound\";s:8:\"singular\";s:14:\"Sudanese pound\";s:6:\"plural\";s:15:\"Sudanese pounds\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_SD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_SD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SE\";a:14:{s:13:\"currency_code\";s:3:\"SEK\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sv_SE\";s:4:\"name\";s:13:\"Swedish krona\";s:8:\"singular\";s:13:\"Swedish krona\";s:6:\"plural\";s:14:\"Swedish kronor\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_SE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SG\";a:14:{s:13:\"currency_code\";s:3:\"SGD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SG\";s:4:\"name\";s:16:\"Singapore dollar\";s:8:\"singular\";s:16:\"Singapore dollar\";s:6:\"plural\";s:17:\"Singapore dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:4:{s:5:\"en_SG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ms_SG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"ta_SG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SH\";a:14:{s:13:\"currency_code\";s:3:\"SHP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SH\";s:4:\"name\";s:18:\"Saint Helena pound\";s:8:\"singular\";s:16:\"St. Helena pound\";s:6:\"plural\";s:17:\"St. Helena pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:2:{s:5:\"en_SH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SI\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sl_SI\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SJ\";a:14:{s:13:\"currency_code\";s:3:\"NOK\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nb_SJ\";s:4:\"name\";s:15:\"Norwegian krone\";s:8:\"singular\";s:15:\"Norwegian krone\";s:6:\"plural\";s:16:\"Norwegian kroner\";s:12:\"short_symbol\";s:2:\"kr\";s:7:\"locales\";a:5:{s:5:\"nb_SJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nb_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nn_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"se_NO\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SK\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sk_SK\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SL\";a:14:{s:13:\"currency_code\";s:3:\"SLL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SL\";s:4:\"name\";s:20:\"Sierra Leonean leone\";s:8:\"singular\";s:20:\"Sierra Leonean leone\";s:6:\"plural\";s:21:\"Sierra Leonean leones\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_SL\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SM\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"it_SM\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SN\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"wo_SN\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SO\";a:14:{s:13:\"currency_code\";s:3:\"SOS\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"so_SO\";s:4:\"name\";s:15:\"Somali shilling\";s:8:\"singular\";s:15:\"Somali shilling\";s:6:\"plural\";s:16:\"Somali shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_SO\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"so_SO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"SR\";a:14:{s:13:\"currency_code\";s:3:\"SRD\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"nl_SR\";s:4:\"name\";s:17:\"Surinamese dollar\";s:8:\"singular\";s:17:\"Surinamese dollar\";s:6:\"plural\";s:18:\"Surinamese dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"nl_SR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SS\";a:14:{s:13:\"currency_code\";s:3:\"SSP\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SS\";s:4:\"name\";s:20:\"South Sudanese pound\";s:8:\"singular\";s:20:\"South Sudanese pound\";s:6:\"plural\";s:21:\"South Sudanese pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:2:{s:5:\"en_SS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ST\";a:14:{s:13:\"currency_code\";s:3:\"STN\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_ST\";s:4:\"name\";s:30:\"São Tomé and Príncipe dobra\";s:8:\"singular\";s:28:\"São Tomé & Príncipe dobra\";s:6:\"plural\";s:29:\"São Tomé & Príncipe dobras\";s:12:\"short_symbol\";s:2:\"Db\";s:7:\"locales\";a:2:{s:5:\"pt_ST\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SV\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_SV\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SX\";a:14:{s:13:\"currency_code\";s:3:\"ANG\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SX\";s:4:\"name\";s:29:\"Netherlands Antillean guilder\";s:8:\"singular\";s:29:\"Netherlands Antillean guilder\";s:6:\"plural\";s:30:\"Netherlands Antillean guilders\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"en_SX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_CW\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"nl_SX\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"SY\";a:14:{s:13:\"currency_code\";s:3:\"SYP\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_SY\";s:4:\"name\";s:12:\"Syrian pound\";s:8:\"singular\";s:12:\"Syrian pound\";s:6:\"plural\";s:13:\"Syrian pounds\";s:12:\"short_symbol\";s:2:\"£\";s:7:\"locales\";a:3:{s:5:\"ar_SY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SY\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"SZ\";a:14:{s:13:\"currency_code\";s:3:\"SZL\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_SZ\";s:4:\"name\";s:15:\"Swazi lilangeni\";s:8:\"singular\";s:15:\"Swazi lilangeni\";s:6:\"plural\";s:16:\"Swazi emalangeni\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_SZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TC\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TC\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TD\";a:14:{s:13:\"currency_code\";s:3:\"XAF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_TD\";s:4:\"name\";s:25:\"Central African CFA franc\";s:8:\"singular\";s:25:\"Central African CFA franc\";s:6:\"plural\";s:26:\"Central African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:12:{s:5:\"ar_TD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_CM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_CF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TD\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sg_CF\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TG\";a:14:{s:13:\"currency_code\";s:3:\"XOF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_TG\";s:4:\"name\";s:22:\"West African CFA franc\";s:8:\"singular\";s:22:\"West African CFA franc\";s:6:\"plural\";s:23:\"West African CFA francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:11:{s:5:\"fr_BF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_CI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_ML\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_NE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_TG\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"pt_GW\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"dyo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"wo_SN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TH\";a:14:{s:13:\"currency_code\";s:3:\"THB\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"th_TH\";s:4:\"name\";s:9:\"Thai baht\";s:8:\"singular\";s:9:\"Thai baht\";s:6:\"plural\";s:9:\"Thai baht\";s:12:\"short_symbol\";s:3:\"฿\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"th_TH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TJ\";a:14:{s:13:\"currency_code\";s:3:\"TJS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"tg_TJ\";s:4:\"name\";s:18:\"Tajikistani somoni\";s:8:\"singular\";s:18:\"Tajikistani somoni\";s:6:\"plural\";s:19:\"Tajikistani somonis\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tg_TJ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"TK\";a:14:{s:13:\"currency_code\";s:3:\"NZD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TK\";s:4:\"name\";s:18:\"New Zealand dollar\";s:8:\"singular\";s:18:\"New Zealand dollar\";s:6:\"plural\";s:19:\"New Zealand dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:7:{s:5:\"en_CK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TK\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"mi_NZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TL\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"pt_TL\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TM\";a:14:{s:13:\"currency_code\";s:3:\"TMT\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"tk_TM\";s:4:\"name\";s:18:\"Turkmenistan manat\";s:8:\"singular\";s:19:\"Turkmenistani manat\";s:6:\"plural\";s:19:\"Turkmenistani manat\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tk_TM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"TN\";a:14:{s:13:\"currency_code\";s:3:\"TND\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:3;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_TN\";s:4:\"name\";s:14:\"Tunisian dinar\";s:8:\"singular\";s:14:\"Tunisian dinar\";s:6:\"plural\";s:15:\"Tunisian dinars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"ar_TN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"fr_TN\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TO\";a:14:{s:13:\"currency_code\";s:3:\"TOP\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"to_TO\";s:4:\"name\";s:15:\"Tongan paʻanga\";s:8:\"singular\";s:15:\"Tongan paʻanga\";s:6:\"plural\";s:15:\"Tongan paʻanga\";s:12:\"short_symbol\";s:2:\"T$\";s:7:\"locales\";a:3:{s:5:\"en_TO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"to_TO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"TR\";a:14:{s:13:\"currency_code\";s:3:\"TRY\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"tr_TR\";s:4:\"name\";s:12:\"Turkish lira\";s:8:\"singular\";s:12:\"Turkish lira\";s:6:\"plural\";s:12:\"Turkish Lira\";s:12:\"short_symbol\";s:3:\"₺\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"tr_TR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TT\";a:14:{s:13:\"currency_code\";s:3:\"TTD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TT\";s:4:\"name\";s:26:\"Trinidad and Tobago dollar\";s:8:\"singular\";s:24:\"Trinidad & Tobago dollar\";s:6:\"plural\";s:25:\"Trinidad & Tobago dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"en_TT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TV\";a:14:{s:13:\"currency_code\";s:3:\"AUD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_TV\";s:4:\"name\";s:17:\"Australian dollar\";s:8:\"singular\";s:17:\"Australian dollar\";s:6:\"plural\";s:18:\"Australian dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:8:{s:5:\"en_AU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_CX\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NF\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TW\";a:14:{s:13:\"currency_code\";s:3:\"TWD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:7:\"zh_Hant\";s:4:\"name\";s:17:\"New Taiwan dollar\";s:8:\"singular\";s:17:\"New Taiwan dollar\";s:6:\"plural\";s:18:\"New Taiwan dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:7:\"zh_Hant\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"TZ\";a:14:{s:13:\"currency_code\";s:3:\"TZS\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_TZ\";s:4:\"name\";s:18:\"Tanzanian shilling\";s:8:\"singular\";s:18:\"Tanzanian shilling\";s:6:\"plural\";s:19:\"Tanzanian shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_TZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sw_TZ\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"UA\";a:14:{s:13:\"currency_code\";s:3:\"UAH\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"uk_UA\";s:4:\"name\";s:17:\"Ukrainian hryvnia\";s:8:\"singular\";s:17:\"Ukrainian hryvnia\";s:6:\"plural\";s:18:\"Ukrainian hryvnias\";s:12:\"short_symbol\";s:3:\"₴\";s:7:\"locales\";a:3:{s:5:\"ru_UA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"uk_UA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"UG\";a:14:{s:13:\"currency_code\";s:3:\"UGX\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sw_UG\";s:4:\"name\";s:16:\"Ugandan shilling\";s:8:\"singular\";s:16:\"Ugandan shilling\";s:6:\"plural\";s:17:\"Ugandan shillings\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_UG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sw_UG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"UM\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_UM\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"US\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"oz\";s:14:\"dimension_unit\";s:4:\"foot\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_US\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"UY\";a:14:{s:13:\"currency_code\";s:3:\"UYU\";s:12:\"currency_pos\";s:10:\"left_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_UY\";s:4:\"name\";s:14:\"Uruguayan peso\";s:8:\"singular\";s:14:\"Uruguayan peso\";s:6:\"plural\";s:15:\"Uruguayan pesos\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:2:{s:5:\"es_UY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"UZ\";a:14:{s:13:\"currency_code\";s:3:\"UZS\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"uz_AF\";s:4:\"name\";s:15:\"Uzbekistani som\";s:8:\"singular\";s:15:\"Uzbekistani som\";s:6:\"plural\";s:15:\"Uzbekistani som\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"uz_AF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"VA\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"it_VA\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"VC\";a:14:{s:13:\"currency_code\";s:3:\"XCD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VC\";s:4:\"name\";s:21:\"East Caribbean dollar\";s:8:\"singular\";s:21:\"East Caribbean dollar\";s:6:\"plural\";s:22:\"East Caribbean dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:9:{s:5:\"en_AG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_AI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GD\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_KN\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_LC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"VE\";a:14:{s:13:\"currency_code\";s:3:\"VES\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"es_VE\";s:4:\"name\";s:17:\"Bolívar soberano\";s:8:\"singular\";s:19:\"Venezuelan bolívar\";s:6:\"plural\";s:20:\"Venezuelan bolívars\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"es_VE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"VG\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VG\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"VI\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VI\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}s:2:\"VN\";a:14:{s:13:\"currency_code\";s:3:\"VND\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"vi_VN\";s:4:\"name\";s:18:\"Vietnamese đồng\";s:8:\"singular\";s:15:\"Vietnamese dong\";s:6:\"plural\";s:15:\"Vietnamese dong\";s:12:\"short_symbol\";s:3:\"₫\";s:7:\"locales\";a:2:{s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"vi_VN\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"VU\";a:14:{s:13:\"currency_code\";s:3:\"VUV\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_VU\";s:4:\"name\";s:12:\"Vanuatu vatu\";s:8:\"singular\";s:12:\"Vanuatu vatu\";s:6:\"plural\";s:13:\"Vanuatu vatus\";s:12:\"short_symbol\";N;s:7:\"locales\";a:3:{s:5:\"en_VU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_VU\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"WF\";a:14:{s:13:\"currency_code\";s:3:\"XPF\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_WF\";s:4:\"name\";s:9:\"CFP franc\";s:8:\"singular\";s:9:\"CFP franc\";s:6:\"plural\";s:10:\"CFP francs\";s:12:\"short_symbol\";N;s:7:\"locales\";a:4:{s:5:\"fr_NC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_WF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"WS\";a:14:{s:13:\"currency_code\";s:3:\"WST\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_WS\";s:4:\"name\";s:13:\"Samoan tālā\";s:8:\"singular\";s:11:\"Samoan tala\";s:6:\"plural\";s:11:\"Samoan tala\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"en_WS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"XK\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sq_XK\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"YE\";a:14:{s:13:\"currency_code\";s:3:\"YER\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:0;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"rtl\";s:14:\"default_locale\";s:5:\"ar_YE\";s:4:\"name\";s:11:\"Yemeni rial\";s:8:\"singular\";s:11:\"Yemeni rial\";s:6:\"plural\";s:12:\"Yemeni rials\";s:12:\"short_symbol\";N;s:7:\"locales\";a:2:{s:5:\"ar_YE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"rtl\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"YT\";a:14:{s:13:\"currency_code\";s:3:\"EUR\";s:12:\"currency_pos\";s:11:\"right_space\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"fr_YT\";s:4:\"name\";s:4:\"Euro\";s:8:\"singular\";s:4:\"euro\";s:6:\"plural\";s:5:\"euros\";s:12:\"short_symbol\";s:3:\"€\";s:7:\"locales\";a:51:{s:5:\"ca_AD\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_AT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"de_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"en_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_IC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_BL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_GP\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MC\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MF\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_MQ\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_PM\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_RE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_YT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_SM\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_VA\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_PT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sq_XK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_ME\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:10:\"sr_Latn_XK\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_AX\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sv_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"tr_CY\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:6:\"ast_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"ca_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"de_DE\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"el_GR\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"es_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"et_EE\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"eu_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fi_FI\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fr_FR\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"fy_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"ga_IE\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"gl_ES\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"it_IT\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lb_LU\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lt_LT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"lv_LV\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"mt_MT\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nl_NL\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"sk_SK\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"sl_SI\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}}}s:2:\"ZA\";a:14:{s:13:\"currency_code\";s:3:\"ZAR\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_ZA\";s:4:\"name\";s:18:\"South African rand\";s:8:\"singular\";s:18:\"South African rand\";s:6:\"plural\";s:18:\"South African rand\";s:12:\"short_symbol\";s:1:\"R\";s:7:\"locales\";a:7:{s:5:\"en_LS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_NA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"af_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"xh_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"zu_ZA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ZM\";a:14:{s:13:\"currency_code\";s:3:\"ZMW\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"en_ZM\";s:4:\"name\";s:14:\"Zambian kwacha\";s:8:\"singular\";s:14:\"Zambian kwacha\";s:6:\"plural\";s:15:\"Zambian kwachas\";s:12:\"short_symbol\";s:2:\"ZK\";s:7:\"locales\";a:2:{s:5:\"en_ZM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}}}s:2:\"ZW\";a:14:{s:13:\"currency_code\";s:3:\"USD\";s:12:\"currency_pos\";s:4:\"left\";s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:12:\"num_decimals\";i:2;s:11:\"weight_unit\";s:2:\"kg\";s:14:\"dimension_unit\";s:2:\"cm\";s:9:\"direction\";s:3:\"ltr\";s:14:\"default_locale\";s:5:\"sn_ZW\";s:4:\"name\";s:25:\"United States (US) dollar\";s:8:\"singular\";s:9:\"US dollar\";s:6:\"plural\";s:10:\"US dollars\";s:12:\"short_symbol\";s:1:\"$\";s:7:\"locales\";a:28:{s:5:\"en_AS\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_DG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_FM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_GU\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_IO\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MH\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_MP\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_PW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_TC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_UM\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VG\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_VI\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_EC\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PA\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_PR\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_SV\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"es_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"fr_HT\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"nl_BQ\";a:4:{s:12:\"thousand_sep\";s:1:\".\";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:5:\"pt_TL\";a:4:{s:12:\"thousand_sep\";s:1:\" \";s:11:\"decimal_sep\";s:1:\",\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:11:\"right_space\";}s:5:\"qu_EC\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}s:7:\"default\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"en_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:6:\"haw_US\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"nd_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:4:\"left\";}s:5:\"sn_ZW\";a:4:{s:12:\"thousand_sep\";s:1:\",\";s:11:\"decimal_sep\";s:1:\".\";s:9:\"direction\";s:3:\"ltr\";s:12:\"currency_pos\";s:10:\"left_space\";}}}}','no'),(80697,'_transient_timeout_jetpack_is_single_user','1646962295','no'),(80698,'_transient_jetpack_is_single_user','2','no'),(80744,'pa_elements_f7508e92c','a:0:{}','no'),(80745,'pa_edit_f7508e92c','1646866765','no'),(80747,'_transient_timeout_jetpack_https_test','1647016006','no'),(80748,'_transient_jetpack_https_test','1','no'),(80749,'_transient_timeout_jetpack_https_test_message','1647016006','no'),(80750,'_transient_jetpack_https_test_message','','no'),(80755,'jetpack_site_products','a:0:{}','yes'),(80840,'_site_transient_timeout_theme_roots','1646947154','no'),(80841,'_site_transient_theme_roots','a:5:{s:15:\"hello-elementor\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(80842,'_transient_timeout__woocommerce_helper_updates','1646988554','no'),(80843,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"86a5d4c01cc90b0ad45539a7b063464c\";s:7:\"updated\";i:1646945354;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(80847,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1646945359;s:7:\"checked\";a:5:{s:15:\"hello-elementor\";s:5:\"2.4.1\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.2\";s:15:\"twentytwentytwo\";s:3:\"1.0\";}s:8:\"response\";a:5:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.2.5.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.5.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(80848,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1646945360;s:8:\"response\";a:13:{s:55:\"elex-usps-shipping-method/usps-woocommerce-shipping.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/elex-usps-shipping-method\";s:4:\"slug\";s:25:\"elex-usps-shipping-method\";s:6:\"plugin\";s:55:\"elex-usps-shipping-method/usps-woocommerce-shipping.php\";s:11:\"new_version\";s:5:\"1.4.6\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/elex-usps-shipping-method/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/elex-usps-shipping-method.1.4.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/elex-usps-shipping-method/assets/icon-256x256.png?rev=2557472\";s:2:\"1x\";s:78:\"https://ps.w.org/elex-usps-shipping-method/assets/icon-128x128.png?rev=2557472\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/elex-usps-shipping-method/assets/banner-1544x500.png?rev=2557472\";s:2:\"1x\";s:80:\"https://ps.w.org/elex-usps-shipping-method/assets/banner-772x250.png?rev=2557472\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:82:\"<ul>\n<li>Tested with WooCommerce 6.1</li>\n<li>Tested with WordPress 5.9</li>\n</ul>\";}s:51:\"google-listings-and-ads/google-listings-and-ads.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/google-listings-and-ads\";s:4:\"slug\";s:23:\"google-listings-and-ads\";s:6:\"plugin\";s:51:\"google-listings-and-ads/google-listings-and-ads.php\";s:11:\"new_version\";s:6:\"1.11.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/google-listings-and-ads/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/google-listings-and-ads.1.11.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:76:\"https://ps.w.org/google-listings-and-ads/assets/icon-256x256.png?rev=2528997\";s:2:\"1x\";s:68:\"https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2528997\";s:3:\"svg\";s:68:\"https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2528997\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/google-listings-and-ads/assets/banner-1544x500.png?rev=2542080\";s:2:\"1x\";s:78:\"https://ps.w.org/google-listings-and-ads/assets/banner-772x250.png?rev=2542080\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"7.3\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:4:\"10.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/jetpack.10.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2638128\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:39:\"w.org/plugins/mailchimp-for-woocommerce\";s:4:\"slug\";s:25:\"mailchimp-for-woocommerce\";s:6:\"plugin\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:11:\"new_version\";s:5:\"2.6.1\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/mailchimp-for-woocommerce/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/mailchimp-for-woocommerce.2.6.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501\";s:2:\"1x\";s:78:\"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-1544x500.png?rev=1950415\";s:2:\"1x\";s:80:\"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-772x250.jpg?rev=1950415\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"7.0\";}s:21:\"mailpoet/mailpoet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/mailpoet\";s:4:\"slug\";s:8:\"mailpoet\";s:6:\"plugin\";s:21:\"mailpoet/mailpoet.php\";s:11:\"new_version\";s:6:\"3.84.0\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/mailpoet/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/mailpoet.3.84.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/mailpoet/assets/icon-256x256.png?rev=1895745\";s:2:\"1x\";s:61:\"https://ps.w.org/mailpoet/assets/icon-128x128.png?rev=1706492\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/mailpoet/assets/banner-1544x500.png?rev=2046588\";s:2:\"1x\";s:63:\"https://ps.w.org/mailpoet/assets/banner-772x250.png?rev=2046588\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"7.2\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"5.3.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.5.3.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=2594863\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=2594863\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:49:\"woo-usps-simple-shipping/USPS-simple-shipping.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/woo-usps-simple-shipping\";s:4:\"slug\";s:24:\"woo-usps-simple-shipping\";s:6:\"plugin\";s:49:\"woo-usps-simple-shipping/USPS-simple-shipping.php\";s:11:\"new_version\";s:5:\"1.6.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/woo-usps-simple-shipping/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/woo-usps-simple-shipping.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/woo-usps-simple-shipping/assets/icon-128x128.png?rev=1301174\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/woo-usps-simple-shipping/assets/banner-772x250.png?rev=1301174\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:54:\"w.org/plugins/woocommerce-google-analytics-integration\";s:4:\"slug\";s:40:\"woocommerce-google-analytics-integration\";s:6:\"plugin\";s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";s:11:\"new_version\";s:5:\"1.5.8\";s:3:\"url\";s:71:\"https://wordpress.org/plugins/woocommerce-google-analytics-integration/\";s:7:\"package\";s:89:\"https://downloads.wordpress.org/plugin/woocommerce-google-analytics-integration.1.5.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:93:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/icon-256x256.png?rev=2584223\";s:2:\"1x\";s:93:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/icon-128x128.png?rev=2584223\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/banner-1544x500.png?rev=2584223\";s:2:\"1x\";s:95:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/banner-772x250.png?rev=2584223\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";b:0;}s:45:\"woocommerce-payments/woocommerce-payments.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-payments\";s:4:\"slug\";s:20:\"woocommerce-payments\";s:6:\"plugin\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:11:\"new_version\";s:5:\"3.8.2\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-payments/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/woocommerce-payments.3.8.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-256x256.png?rev=2429229\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-128x128.png?rev=2429229\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-payments/assets/banner-1544x500.png?rev=2429229\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-payments/assets/banner-772x250.png?rev=2429229\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"7.0\";}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:57:\"w.org/plugins/woocommerce-gateway-paypal-express-checkout\";s:4:\"slug\";s:43:\"woocommerce-gateway-paypal-express-checkout\";s:6:\"plugin\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:3:\"url\";s:74:\"https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-paypal-express-checkout.2.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-256x256.png?rev=2423949\";s:2:\"1x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-128x128.png?rev=2423949\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-1544x500.png?rev=2423949\";s:2:\"1x\";s:98:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-772x250.png?rev=2423949\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.8.3\";s:12:\"requires_php\";s:3:\"5.5\";}s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/woocommerce-paypal-payments\";s:4:\"slug\";s:27:\"woocommerce-paypal-payments\";s:6:\"plugin\";s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";s:11:\"new_version\";s:5:\"1.7.0\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/woocommerce-paypal-payments/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/woocommerce-paypal-payments.1.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/woocommerce-paypal-payments/assets/icon-256x256.png?rev=2598902\";s:2:\"1x\";s:80:\"https://ps.w.org/woocommerce-paypal-payments/assets/icon-128x128.png?rev=2598902\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/woocommerce-paypal-payments/assets/banner-1544x500.png?rev=2598902\";s:2:\"1x\";s:82:\"https://ps.w.org/woocommerce-paypal-payments/assets/banner-772x250.png?rev=2598902\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"7.1\";}s:45:\"woocommerce-services/woocommerce-services.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-services\";s:4:\"slug\";s:20:\"woocommerce-services\";s:6:\"plugin\";s:45:\"woocommerce-services/woocommerce-services.php\";s:11:\"new_version\";s:7:\"1.25.23\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-services/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/woocommerce-services.1.25.23.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-256x256.png?rev=2398959\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-128x128.png?rev=2398959\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-services/assets/banner-1544x500.png?rev=2398959\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-services/assets/banner-772x250.png?rev=2398959\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:3:\"5.3\";}s:27:\"wp-super-cache/wp-cache.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/wp-super-cache\";s:4:\"slug\";s:14:\"wp-super-cache\";s:6:\"plugin\";s:27:\"wp-super-cache/wp-cache.php\";s:11:\"new_version\";s:5:\"1.7.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-super-cache/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wp-super-cache.1.7.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-super-cache/assets/icon-256x256.png?rev=1095422\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-super-cache/assets/icon-128x128.png?rev=1095422\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-super-cache/assets/banner-1544x500.png?rev=1082414\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-super-cache/assets/banner-772x250.png?rev=1082414\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";s:6:\"tested\";s:5:\"5.9.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.2.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.5.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:5:\"1.6.9\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.9.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2308485\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2308485\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2308485\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2308485\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.2.5.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/ninja-forms\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:5:\"3.6.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/ninja-forms.3.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747\";s:2:\"1x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024\";s:2:\"1x\";s:66:\"https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:42:\"w.org/plugins/premium-addons-for-elementor\";s:4:\"slug\";s:28:\"premium-addons-for-elementor\";s:6:\"plugin\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:11:\"new_version\";s:5:\"4.9.0\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/premium-addons-for-elementor/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.9.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:81:\"https://ps.w.org/premium-addons-for-elementor/assets/icon-256x256.png?rev=2421900\";s:2:\"1x\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900\";s:3:\"svg\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.jpg?rev=2628103\";s:2:\"1x\";s:83:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.jpg?rev=2628103\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"6.3.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";}}s:7:\"checked\";a:21:{s:19:\"akismet/akismet.php\";s:5:\"4.2.2\";s:23:\"elementor/elementor.php\";s:5:\"3.5.6\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:5:\"1.6.9\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"2.5.4\";s:55:\"elex-usps-shipping-method/usps-woocommerce-shipping.php\";s:5:\"1.4.3\";s:51:\"google-listings-and-ads/google-listings-and-ads.php\";s:5:\"1.4.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:4:\"10.0\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:5:\"2.5.2\";s:21:\"mailpoet/mailpoet.php\";s:6:\"3.68.0\";s:27:\"ninja-forms/ninja-forms.php\";s:5:\"3.6.7\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:5:\"4.9.0\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:5:\"5.0.9\";s:49:\"woo-usps-simple-shipping/USPS-simple-shipping.php\";s:5:\"1.5.4\";s:27:\"woocommerce/woocommerce.php\";s:5:\"6.3.1\";s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";s:5:\"1.5.6\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:5:\"2.9.0\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:5:\"2.1.2\";s:59:\"woocommerce-paypal-payments/woocommerce-paypal-payments.php\";s:5:\"1.5.1\";s:45:\"woocommerce-services/woocommerce-services.php\";s:7:\"1.25.18\";s:27:\"wp-super-cache/wp-cache.php\";s:5:\"1.7.4\";}}','no'),(80855,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1647031761','no'),(80856,'_transient_jetpack_plugin_api_action_links_refresh','1646945361','no'),(80860,'_transient_timeout__woocommerce_upload_directory_status','1647031763','no'),(80861,'_transient__woocommerce_upload_directory_status','protected','no'),(80862,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(80882,'_transient_timeout_jetpack_sync_constants_await','1646953670','no'),(80883,'_transient_jetpack_sync_constants_await','1646950070.409','no'),(80884,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1646950370','no'),(80885,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(80906,'_transient_timeout_global_styles_hello-elementor','1646951841','no'),(80907,'_transient_global_styles_hello-elementor','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}','no'),(80908,'_transient_timeout_global_styles_svg_filters_hello-elementor','1646951841','no'),(80909,'_transient_global_styles_svg_filters_hello-elementor','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no'),(80912,'_transient_timeout_jetpack_sync_callables_await','1646951901','no'),(80913,'_transient_jetpack_sync_callables_await','1646951841.3328','no'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3341 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(5,6,'_wp_attached_file','woocommerce-placeholder.png'),(6,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8,12,'_edit_lock','1643991435:2'),(9,12,'_edit_last','1'),(10,12,'_elementor_edit_mode','builder'),(11,12,'_elementor_template_type','wp-page'),(12,12,'_elementor_version','3.5.5'),(14,12,'_wp_page_template','default'),(15,12,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedorentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(16,12,'_elementor_page_assets','a:0:{}'),(17,14,'_elementor_edit_mode','builder'),(18,14,'_elementor_template_type','wp-page'),(19,14,'_elementor_version','3.3.1'),(20,14,'_wp_page_template','default'),(21,14,'_elementor_data','[]'),(22,14,'_elementor_page_assets','a:0:{}'),(23,15,'_elementor_edit_mode','builder'),(24,15,'_elementor_template_type','wp-page'),(25,15,'_elementor_version','3.3.1'),(26,15,'_wp_page_template','default'),(27,15,'_elementor_data','[]'),(28,15,'_elementor_page_assets','a:0:{}'),(29,16,'_elementor_edit_mode','builder'),(30,16,'_elementor_template_type','wp-page'),(31,16,'_elementor_version','3.3.1'),(32,16,'_wp_page_template','default'),(33,16,'_elementor_data','[{\"id\":\"4ae4c55\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63506fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0bb58e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7214503\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"7989720\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cd3f658\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(34,16,'_elementor_page_assets','a:0:{}'),(45,18,'_wp_attached_file','2021/08/MichaelBlakeMensWearTopImage.jpg'),(46,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:740;s:4:\"file\";s:40:\"2021/08/MichaelBlakeMensWearTopImage.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-768x568.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-600x444.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"MichaelBlakeMensWearTopImage-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1310988134\";s:9:\"copyright\";s:17:\"©2011 Vito Amati\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(47,19,'_wp_attached_file','2021/08/menswear-michaelblake.jpg'),(48,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:219;s:4:\"file\";s:33:\"2021/08/menswear-michaelblake.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"menswear-michaelblake-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"menswear-michaelblake-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"menswear-michaelblake-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:9:\"NIKON D40\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1374926949\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(49,20,'_wp_attached_file','2021/08/theexperience-michaelblake.jpg'),(50,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:219;s:4:\"file\";s:38:\"2021/08/theexperience-michaelblake.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"theexperience-michaelblake-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"theexperience-michaelblake-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"theexperience-michaelblake-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1441411564\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51,21,'_wp_attached_file','2021/08/about-menswear1.jpg'),(52,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:219;s:4:\"file\";s:27:\"2021/08/about-menswear1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"about-menswear1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"about-menswear1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"about-menswear1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1489434241\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(54,22,'_wp_attached_file','2021/08/contact-blakemenswear.png'),(55,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2012;s:6:\"height\";i:602;s:4:\"file\";s:33:\"2021/08/contact-blakemenswear.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"contact-blakemenswear-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"contact-blakemenswear-1024x306.png\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-768x230.png\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"contact-blakemenswear-1536x460.png\";s:5:\"width\";i:1536;s:6:\"height\";i:460;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"contact-blakemenswear-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-600x180.png\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-600x180.png\";s:5:\"width\";i:600;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"contact-blakemenswear-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56,23,'_elementor_edit_mode','builder'),(57,23,'_elementor_template_type','wp-page'),(58,23,'_elementor_version','3.3.1'),(59,23,'_wp_page_template','default'),(60,23,'_elementor_data','[{\"id\":\"4ae4c55\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63506fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0bb58e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7214503\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"7989720\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cd3f658\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(61,23,'_elementor_page_assets','a:0:{}'),(62,24,'_elementor_edit_mode','builder'),(63,24,'_elementor_template_type','wp-page'),(64,24,'_elementor_version','3.3.1'),(65,24,'_wp_page_template','default'),(66,24,'_elementor_data','[{\"id\":\"4ae4c55\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63506fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"0bb58e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7214503\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"7989720\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cd3f658\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(67,24,'_elementor_page_assets','a:0:{}'),(68,12,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(69,25,'_elementor_edit_mode','builder'),(70,25,'_elementor_template_type','wp-page'),(71,25,'_elementor_version','3.3.1'),(72,25,'_wp_page_template','default'),(73,25,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeMensWearTopImage.jpg\",\"id\":18,\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear available in all sizes\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(74,25,'_elementor_page_assets','a:0:{}'),(75,25,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(86,28,'_edit_last','1'),(87,28,'_edit_lock','1633377814:1'),(88,28,'_wp_page_template','default'),(89,28,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(90,28,'ehf_target_exclude_locations','a:0:{}'),(91,28,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(92,28,'ehf_template_type','type_header'),(93,28,'_elementor_edit_mode','builder'),(94,28,'_elementor_template_type','wp-post'),(95,28,'_elementor_version','3.4.4'),(97,28,'ekit_post_views_count','10'),(105,31,'_wp_attached_file','2021/08/MichaelBlakeLogo.png'),(106,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1917;s:6:\"height\";i:531;s:4:\"file\";s:28:\"2021/08/MichaelBlakeLogo.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"MichaelBlakeLogo-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"MichaelBlakeLogo-1024x284.png\";s:5:\"width\";i:1024;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-768x213.png\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"MichaelBlakeLogo-1536x425.png\";s:5:\"width\";i:1536;s:6:\"height\";i:425;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"MichaelBlakeLogo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-600x166.png\";s:5:\"width\";i:600;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-600x166.png\";s:5:\"width\";i:600;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"MichaelBlakeLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(107,32,'_wp_page_template','default'),(108,32,'_elementor_edit_mode','builder'),(109,32,'_elementor_template_type','wp-post'),(110,32,'_elementor_version','3.3.1'),(111,33,'_wp_page_template','default'),(112,33,'_elementor_edit_mode','builder'),(113,33,'_elementor_template_type','wp-post'),(114,33,'_elementor_version','3.3.1'),(115,28,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#E1E1E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(116,34,'_wp_page_template','default'),(117,34,'_elementor_edit_mode','builder'),(118,34,'_elementor_template_type','wp-post'),(119,34,'_elementor_version','3.3.1'),(120,34,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":45.893000000000000682121026329696178436279296875},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.28099999999999880628820392303168773651123046875},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Type & Hit Enter...\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(121,28,'_elementor_page_assets','a:0:{}'),(124,35,'_menu_item_type','post_type'),(125,35,'_menu_item_menu_item_parent','0'),(126,35,'_menu_item_object_id','12'),(127,35,'_menu_item_object','page'),(128,35,'_menu_item_target',''),(129,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(130,35,'_menu_item_xfn',''),(131,35,'_menu_item_url',''),(133,36,'_menu_item_type','custom'),(134,36,'_menu_item_menu_item_parent','0'),(135,36,'_menu_item_object_id','36'),(136,36,'_menu_item_object','custom'),(137,36,'_menu_item_target','_blank'),(138,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(139,36,'_menu_item_xfn',''),(140,36,'_menu_item_url','http://mycustomclothier.com/Michaelblake'),(142,37,'_menu_item_type','custom'),(143,37,'_menu_item_menu_item_parent','0'),(144,37,'_menu_item_object_id','37'),(145,37,'_menu_item_object','custom'),(146,37,'_menu_item_target',''),(147,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(148,37,'_menu_item_xfn',''),(149,37,'_menu_item_url','https://michaelblakemenswear.com/product-category/ready-to-wear/'),(151,38,'_menu_item_type','custom'),(152,38,'_menu_item_menu_item_parent','0'),(153,38,'_menu_item_object_id','38'),(154,38,'_menu_item_object','custom'),(155,38,'_menu_item_target',''),(156,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(157,38,'_menu_item_xfn',''),(158,38,'_menu_item_url','https://michaelblakemenswear.com/product-category/accessories/'),(169,40,'_menu_item_type','custom'),(170,40,'_menu_item_menu_item_parent','0'),(171,40,'_menu_item_object_id','40'),(172,40,'_menu_item_object','custom'),(173,40,'_menu_item_target','_blank'),(174,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(175,40,'_menu_item_xfn',''),(176,40,'_menu_item_url','http://michaelblakemenswear.Wordpress.com'),(188,42,'_wp_page_template','default'),(189,42,'_elementor_edit_mode','builder'),(190,42,'_elementor_template_type','wp-post'),(191,42,'_elementor_version','3.3.1'),(192,42,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":45.893000000000000682121026329696178436279296875},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.28099999999999880628820392303168773651123046875},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Type & Hit Enter...\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(193,42,'_elementor_page_assets','a:0:{}'),(194,43,'_wp_page_template','default'),(195,43,'_elementor_edit_mode','builder'),(196,43,'_elementor_template_type','wp-post'),(197,43,'_elementor_version','3.3.1'),(198,43,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":45.893000000000000682121026329696178436279296875},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":23.28099999999999880628820392303168773651123046875},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Type & Hit Enter...\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(199,43,'_elementor_page_assets','a:0:{}'),(200,44,'_wp_page_template','default'),(201,44,'_elementor_edit_mode','builder'),(202,44,'_elementor_template_type','wp-post'),(203,44,'_elementor_version','3.3.1'),(204,44,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(205,44,'_elementor_page_assets','a:0:{}'),(218,46,'_elementor_edit_mode','builder'),(219,46,'_elementor_template_type','wp-page'),(220,46,'_elementor_version','3.3.1'),(221,46,'_wp_page_template','default'),(222,46,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeMensWearTopImage.jpg\",\"id\":18,\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear available in all sizes\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(223,46,'_elementor_page_assets','a:0:{}'),(224,46,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(226,47,'_elementor_edit_mode','builder'),(227,47,'_elementor_template_type','wp-page'),(228,47,'_elementor_version','3.3.1'),(229,47,'_wp_page_template','default'),(230,47,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeMensWearTopImage.jpg\",\"id\":18,\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear available in all sizes\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(231,47,'_elementor_page_assets','a:0:{}'),(232,47,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(234,48,'_elementor_edit_mode','builder'),(235,48,'_elementor_template_type','wp-page'),(236,48,'_elementor_version','3.3.1'),(237,48,'_wp_page_template','default'),(238,48,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeMensWearTopImage.jpg\",\"id\":18,\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear available in all sizes\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(239,48,'_elementor_page_assets','a:0:{}'),(240,48,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(257,51,'_edit_last','1'),(258,51,'_edit_lock','1629663467:1'),(259,51,'total_sales','0'),(260,51,'_tax_status','taxable'),(261,51,'_tax_class',''),(262,51,'_manage_stock','no'),(263,51,'_backorders','no'),(264,51,'_sold_individually','no'),(265,51,'_virtual','no'),(266,51,'_downloadable','no'),(267,51,'_download_limit','-1'),(268,51,'_download_expiry','-1'),(269,51,'_stock',NULL),(270,51,'_stock_status','instock'),(271,51,'_wc_average_rating','0'),(272,51,'_wc_review_count','0'),(273,51,'_product_attributes','a:2:{s:5:\"sizes\";a:6:{s:4:\"name\";s:5:\"Sizes\";s:5:\"value\";s:14:\"S | M | L | XL\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:26:\"White | Blue | Black | Red\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),(274,51,'_product_version','5.5.2'),(275,52,'_variation_description',''),(276,52,'total_sales','0'),(277,52,'_tax_status','taxable'),(278,52,'_tax_class','parent'),(279,52,'_manage_stock','no'),(280,52,'_backorders','no'),(281,52,'_sold_individually','no'),(282,52,'_virtual','no'),(283,52,'_downloadable','no'),(284,52,'_download_limit','-1'),(285,52,'_download_expiry','-1'),(286,52,'_stock',NULL),(287,52,'_stock_status','instock'),(288,52,'_wc_average_rating','0'),(289,52,'_wc_review_count','0'),(290,52,'attribute_sizes','S'),(291,52,'_product_version','5.5.2'),(292,53,'_variation_description',''),(293,53,'total_sales','0'),(294,53,'_tax_status','taxable'),(295,53,'_tax_class','parent'),(296,53,'_manage_stock','no'),(297,53,'_backorders','no'),(298,53,'_sold_individually','no'),(299,53,'_virtual','no'),(300,53,'_downloadable','no'),(301,53,'_download_limit','-1'),(302,53,'_download_expiry','-1'),(303,53,'_stock',NULL),(304,53,'_stock_status','instock'),(305,53,'_wc_average_rating','0'),(306,53,'_wc_review_count','0'),(307,53,'attribute_sizes','M'),(308,53,'_product_version','5.5.2'),(309,54,'_variation_description',''),(310,54,'total_sales','0'),(311,54,'_tax_status','taxable'),(312,54,'_tax_class','parent'),(313,54,'_manage_stock','no'),(314,54,'_backorders','no'),(315,54,'_sold_individually','no'),(316,54,'_virtual','no'),(317,54,'_downloadable','no'),(318,54,'_download_limit','-1'),(319,54,'_download_expiry','-1'),(320,54,'_stock',NULL),(321,54,'_stock_status','instock'),(322,54,'_wc_average_rating','0'),(323,54,'_wc_review_count','0'),(324,54,'attribute_sizes','L'),(325,54,'_product_version','5.5.2'),(326,55,'_variation_description',''),(327,55,'total_sales','0'),(328,55,'_tax_status','taxable'),(329,55,'_tax_class','parent'),(330,55,'_manage_stock','no'),(331,55,'_backorders','no'),(332,55,'_sold_individually','no'),(333,55,'_virtual','no'),(334,55,'_downloadable','no'),(335,55,'_download_limit','-1'),(336,55,'_download_expiry','-1'),(337,55,'_stock',NULL),(338,55,'_stock_status','instock'),(339,55,'_wc_average_rating','0'),(340,55,'_wc_review_count','0'),(341,55,'attribute_sizes','XL'),(342,55,'_product_version','5.5.2'),(343,52,'_regular_price','10'),(344,52,'_thumbnail_id','0'),(345,52,'_price','10'),(346,53,'_regular_price','15'),(347,53,'_thumbnail_id','0'),(348,53,'_price','15'),(349,54,'_regular_price','20'),(350,54,'_thumbnail_id','0'),(351,54,'_price','20'),(352,55,'_regular_price','25'),(353,55,'_thumbnail_id','0'),(354,55,'_price','25'),(355,51,'_price','10'),(356,51,'_price','15'),(357,51,'_price','20'),(358,51,'_price','25'),(359,51,'_thumbnail_id','21'),(360,51,'ekit_post_views_count','21'),(361,56,'_edit_last','2'),(362,56,'_edit_lock','1638981656:2'),(363,56,'total_sales','0'),(364,56,'_tax_status','taxable'),(365,56,'_tax_class',''),(366,56,'_manage_stock','no'),(367,56,'_backorders','no'),(368,56,'_sold_individually','no'),(369,56,'_virtual','no'),(370,56,'_downloadable','no'),(371,56,'_download_limit','-1'),(372,56,'_download_expiry','-1'),(373,56,'_stock',NULL),(374,56,'_stock_status','instock'),(375,56,'_wc_average_rating','0'),(376,56,'_wc_review_count','0'),(377,56,'_product_attributes','a:2:{s:5:\"sizes\";a:6:{s:4:\"name\";s:5:\"Sizes\";s:5:\"value\";s:14:\"S | M | L | XL\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"Colors\";s:5:\"value\";s:15:\"Blue | Burgundy\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),(378,56,'_product_version','5.9.0'),(447,56,'_thumbnail_id','310'),(450,56,'ekit_post_views_count','217'),(699,56,'_price','55'),(700,73,'_wp_page_template','default'),(701,73,'_elementor_edit_mode','builder'),(702,73,'_elementor_template_type','wp-post'),(703,73,'_elementor_version','3.3.1'),(704,73,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(705,73,'_elementor_page_assets','a:0:{}'),(707,74,'_wp_page_template','default'),(708,74,'_elementor_edit_mode','builder'),(709,74,'_elementor_template_type','wp-post'),(710,74,'_elementor_version','3.3.1'),(711,74,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(712,74,'_elementor_page_assets','a:0:{}'),(714,75,'_wp_page_template','default'),(715,75,'_elementor_edit_mode','builder'),(716,75,'_elementor_template_type','wp-post'),(717,75,'_elementor_version','3.3.1'),(718,75,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(719,75,'_elementor_page_assets','a:0:{}'),(723,76,'_edit_lock','1629685447:1'),(724,76,'_edit_last','1'),(725,76,'_elementor_edit_mode','builder'),(726,76,'_elementor_template_type','wp-page'),(727,76,'_elementor_version','3.3.1'),(728,79,'_wp_attached_file','2021/08/MichaelBlakeTuxedoRental.jpg'),(729,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:36:\"2021/08/MichaelBlakeTuxedoRental.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"MichaelBlakeTuxedoRental-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"MichaelBlakeTuxedoRental-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"MichaelBlakeTuxedoRental-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(730,76,'_wp_page_template','default'),(731,76,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(732,76,'_elementor_page_assets','a:0:{}'),(741,80,'_elementor_edit_mode','builder'),(742,80,'_elementor_template_type','wp-page'),(743,80,'_elementor_version','3.3.1'),(744,80,'_wp_page_template','default'),(745,80,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3f0535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6decb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ad0d8b\",\"elType\":\"widget\",\"settings\":{\"new_page_title_select_icon\":{\"value\":\"icon icon-information\",\"library\":\"ekiticons\"}},\"elements\":[],\"widgetType\":\"page-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(746,80,'_elementor_page_assets','a:0:{}'),(748,81,'_elementor_edit_mode','builder'),(749,81,'_elementor_template_type','wp-page'),(750,81,'_elementor_version','3.3.1'),(751,81,'_wp_page_template','default'),(752,81,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c3f0535\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6decb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ad0d8b\",\"elType\":\"widget\",\"settings\":{\"new_page_title_select_icon\":{\"value\":\"icon icon-information\",\"library\":\"ekiticons\"}},\"elements\":[],\"widgetType\":\"page-title\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(753,81,'_elementor_page_assets','a:0:{}'),(755,82,'_elementor_edit_mode','builder'),(756,82,'_elementor_template_type','wp-page'),(757,82,'_elementor_version','3.3.1'),(758,82,'_wp_page_template','default'),(759,82,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(760,82,'_elementor_page_assets','a:0:{}'),(764,83,'_elementor_edit_mode','builder'),(765,83,'_elementor_template_type','wp-page'),(766,83,'_elementor_version','3.3.1'),(767,83,'_wp_page_template','default'),(768,83,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(769,83,'_elementor_page_assets','a:0:{}'),(771,84,'_elementor_edit_mode','builder'),(772,84,'_elementor_template_type','wp-page'),(773,84,'_elementor_version','3.3.1'),(774,84,'_wp_page_template','default'),(775,84,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(776,84,'_elementor_page_assets','a:0:{}'),(778,76,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(779,85,'_elementor_edit_mode','builder'),(780,85,'_elementor_template_type','wp-page'),(781,85,'_elementor_version','3.3.1'),(782,85,'_wp_page_template','default'),(783,85,'_elementor_data','[{\"id\":\"b9b5d3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeTuxedoRental.jpg\",\"id\":79,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"7901fd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a166900\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8701aad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"709ee8a\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\",\"ekit_ninja_heading_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true},{\"id\":\"569d294\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(784,85,'_elementor_page_assets','a:0:{}'),(786,85,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(787,76,'_elementor_controls_usage','a:3:{s:23:\"elementskit-ninja-forms\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"ekit_ninja_section_tab\";a:1:{s:18:\"ekit_ninja_form_id\";i:1;}}s:5:\"style\";a:1:{s:35:\"ekit_ninja_section_form_title_style\";a:1:{s:28:\"ekit_ninja_heading_alignment\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}}}}'),(789,86,'_edit_lock','1633377815:1'),(790,86,'_edit_last','1'),(791,86,'_wp_page_template','default'),(792,86,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(793,86,'ehf_target_exclude_locations','a:0:{}'),(794,86,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(795,86,'ehf_template_type','type_footer'),(796,86,'_elementor_edit_mode','builder'),(797,86,'_elementor_template_type','wp-post'),(798,86,'_elementor_version','3.4.4'),(800,86,'ekit_post_views_count','3'),(808,89,'_menu_item_type','post_type'),(809,89,'_menu_item_menu_item_parent','0'),(810,89,'_menu_item_object_id','76'),(811,89,'_menu_item_object','page'),(812,89,'_menu_item_target',''),(813,89,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(814,89,'_menu_item_xfn',''),(815,89,'_menu_item_url',''),(817,35,'_wp_old_date','2021-08-22'),(818,36,'_wp_old_date','2021-08-22'),(819,37,'_wp_old_date','2021-08-22'),(820,38,'_wp_old_date','2021-08-22'),(821,40,'_wp_old_date','2021-08-22'),(823,90,'_wp_page_template','default'),(824,90,'_elementor_edit_mode','builder'),(825,90,'_elementor_template_type','wp-post'),(826,90,'_elementor_version','3.3.1'),(827,91,'_wp_page_template','default'),(828,91,'_elementor_edit_mode','builder'),(829,91,'_elementor_template_type','wp-post'),(830,91,'_elementor_version','3.3.1'),(831,86,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#E1E1E1\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_socialmedai_list_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(832,92,'_wp_page_template','default'),(833,92,'_elementor_edit_mode','builder'),(834,92,'_elementor_template_type','wp-post'),(835,92,'_elementor_version','3.3.1'),(836,92,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(837,86,'_elementor_page_assets','a:0:{}'),(840,93,'_wp_attached_file','2021/08/MichaelBlakeHomePage.jpg'),(841,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:428;s:4:\"file\";s:32:\"2021/08/MichaelBlakeHomePage.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeHomePage-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1569172211\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"67\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(842,94,'_elementor_edit_mode','builder'),(843,94,'_elementor_template_type','wp-page'),(844,94,'_elementor_version','3.3.1'),(845,94,'_wp_page_template','default'),(846,94,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeMensWearTopImage.jpg\",\"id\":18,\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear available in all sizes\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(847,94,'_elementor_page_assets','a:0:{}'),(848,94,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(849,95,'_elementor_edit_mode','builder'),(850,95,'_elementor_template_type','wp-page'),(851,95,'_elementor_version','3.3.1'),(852,95,'_wp_page_template','default'),(853,95,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeMensWearTopImage.jpg\",\"id\":18,\"alt\":\"\",\"source\":\"library\"},\"background_attachment\":\"scroll\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear available in all sizes\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(854,95,'_elementor_page_assets','a:0:{}'),(855,95,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(856,96,'_elementor_edit_mode','builder'),(857,96,'_elementor_template_type','wp-page'),(858,96,'_elementor_version','3.3.1'),(859,96,'_wp_page_template','default'),(860,96,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePage.jpg\",\"id\":93,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f6b5731\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(861,96,'_elementor_page_assets','a:0:{}'),(862,96,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(864,97,'_edit_lock','1629688153:1'),(865,97,'_edit_last','1'),(866,97,'_elementor_edit_mode','builder'),(867,97,'_elementor_template_type','wp-page'),(868,97,'_elementor_version','3.3.1'),(869,97,'_wp_page_template','default'),(870,97,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(871,97,'_elementor_page_assets','a:0:{}'),(873,99,'_elementor_edit_mode','builder'),(874,99,'_elementor_template_type','wp-page'),(875,99,'_elementor_version','3.3.1'),(876,99,'_wp_page_template','default'),(877,99,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePage.jpg\",\"id\":93,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f6b5731\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(878,99,'_elementor_page_assets','a:0:{}'),(879,99,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(881,100,'_elementor_edit_mode','builder'),(882,100,'_elementor_template_type','wp-page'),(883,100,'_elementor_version','3.3.1'),(884,100,'_wp_page_template','default'),(885,100,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePage.jpg\",\"id\":93,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f6b5731\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(886,100,'_elementor_page_assets','a:0:{}'),(887,100,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(889,101,'_elementor_edit_mode','builder'),(890,101,'_elementor_template_type','wp-page'),(891,101,'_elementor_version','3.3.1'),(892,101,'_wp_page_template','default'),(893,101,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePage.jpg\",\"id\":93,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f6b5731\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(894,101,'_elementor_page_assets','a:0:{}'),(895,101,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(906,103,'_elementor_edit_mode','builder'),(907,103,'_elementor_template_type','wp-page'),(908,103,'_elementor_version','3.3.1'),(909,103,'_wp_page_template','default'),(910,103,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(911,103,'_elementor_page_assets','a:0:{}'),(912,104,'_elementor_edit_mode','builder'),(913,104,'_elementor_template_type','wp-page'),(914,104,'_elementor_version','3.3.1'),(915,104,'_wp_page_template','default'),(916,104,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(917,104,'_elementor_page_assets','a:0:{}'),(918,105,'_elementor_edit_mode','builder'),(919,105,'_elementor_template_type','wp-page'),(920,105,'_elementor_version','3.3.1'),(921,105,'_wp_page_template','default'),(922,105,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(923,105,'_elementor_page_assets','a:0:{}'),(932,107,'_elementor_edit_mode','builder'),(933,107,'_elementor_template_type','wp-page'),(934,107,'_elementor_version','3.3.1'),(935,107,'_wp_page_template','default'),(936,107,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(937,107,'_elementor_page_assets','a:0:{}'),(938,108,'_elementor_edit_mode','builder'),(939,108,'_elementor_template_type','wp-page'),(940,108,'_elementor_version','3.3.1'),(941,108,'_wp_page_template','default'),(942,108,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(943,108,'_elementor_page_assets','a:0:{}'),(944,109,'_elementor_edit_mode','builder'),(945,109,'_elementor_template_type','wp-page'),(946,109,'_elementor_version','3.3.1'),(947,109,'_wp_page_template','default'),(948,109,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(949,109,'_elementor_page_assets','a:0:{}'),(951,110,'_elementor_edit_mode','builder'),(952,110,'_elementor_template_type','wp-page'),(953,110,'_elementor_version','3.3.1'),(954,110,'_wp_page_template','default'),(955,110,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(956,110,'_elementor_page_assets','a:0:{}'),(957,111,'_elementor_edit_mode','builder'),(958,111,'_elementor_template_type','wp-page'),(959,111,'_elementor_version','3.3.1'),(960,111,'_wp_page_template','default'),(961,111,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"1\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(962,111,'_elementor_page_assets','a:0:{}'),(963,112,'_elementor_edit_mode','builder'),(964,112,'_elementor_template_type','wp-page'),(965,112,'_elementor_version','3.3.1'),(966,112,'_wp_page_template','default'),(967,112,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(968,112,'_elementor_page_assets','a:0:{}'),(981,114,'_elementor_edit_mode','builder'),(982,114,'_elementor_template_type','wp-page'),(983,114,'_elementor_version','3.3.1'),(984,114,'_wp_page_template','default'),(985,114,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(986,114,'_elementor_page_assets','a:0:{}'),(988,115,'_elementor_edit_mode','builder'),(989,115,'_elementor_template_type','wp-page'),(990,115,'_elementor_version','3.3.1'),(991,115,'_wp_page_template','default'),(992,115,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(993,115,'_elementor_page_assets','a:0:{}'),(995,97,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(996,116,'_elementor_edit_mode','builder'),(997,116,'_elementor_template_type','wp-page'),(998,116,'_elementor_version','3.3.1'),(999,116,'_wp_page_template','default'),(1000,116,'_elementor_data','[{\"id\":\"83c8c82\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5121438\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"14248b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"7ef8647\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"c09d40f\",\"elType\":\"widget\",\"settings\":{\"address\":\"Michael Blake\'s Menswear Maumelle AR\",\"height\":{\"unit\":\"px\",\"size\":692,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"c172d35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"493c943\",\"elType\":\"widget\",\"settings\":{\"ekit_ninja_form_id\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-ninja-forms\"},{\"id\":\"b0abe99\",\"elType\":\"widget\",\"settings\":{\"title\":\"*Store visits available by appointment\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1001,116,'_elementor_page_assets','a:0:{}'),(1003,116,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1004,97,'_elementor_controls_usage','a:5:{s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:23:\"elementskit-ninja-forms\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"ekit_ninja_section_tab\";a:1:{s:18:\"ekit_ninja_form_id\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}}}}'),(1007,117,'_edit_lock','1629694744:1'),(1008,117,'_elementor_edit_mode','builder'),(1009,117,'_elementor_template_type','wp-page'),(1010,117,'_elementor_version','3.3.1'),(1011,117,'_wp_page_template','default'),(1012,117,'_elementor_data','[{\"id\":\"85ce9e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4dc6f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c18930\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":119,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery9.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery7.jpg\"},{\"id\":121,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery6-rotated.jpg\"},{\"id\":122,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery5-rotated.jpg\"},{\"id\":123,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery4.jpg\"},{\"id\":124,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery3.jpg\"},{\"id\":125,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery2.jpg\"},{\"id\":126,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery1-rotated.jpg\"},{\"id\":127,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery.jpg\"}],\"thumbnail_size\":\"full\",\"gallery_columns\":\"3\",\"gallery_link\":\"none\",\"gallery_rand\":\"rand\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(1013,117,'_elementor_page_assets','a:0:{}'),(1022,119,'_wp_attached_file','2021/08/MichaelBlakeGallery9.jpg'),(1023,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:428;s:4:\"file\";s:32:\"2021/08/MichaelBlakeGallery9.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1569171022\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"82\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1024,120,'_wp_attached_file','2021/08/MichaelBlakeGallery7.jpg'),(1025,120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:640;s:4:\"file\";s:32:\"2021/08/MichaelBlakeGallery7.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery7-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1569173061\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1026,121,'_wp_attached_file','2021/08/MichaelBlakeGallery6-rotated.jpg'),(1027,121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:40:\"2021/08/MichaelBlakeGallery6-rotated.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery6-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1568282662\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"MichaelBlakeGallery6.jpg\";}'),(1028,122,'_wp_attached_file','2021/08/MichaelBlakeGallery5-rotated.jpg'),(1029,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:40:\"2021/08/MichaelBlakeGallery5-rotated.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery5-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 12\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626176232\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0037313432835821\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"MichaelBlakeGallery5.jpg\";}'),(1030,123,'_wp_attached_file','2021/08/MichaelBlakeGallery4.jpg'),(1031,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:1334;s:4:\"file\";s:32:\"2021/08/MichaelBlakeGallery4.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery4-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"MichaelBlakeGallery4-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"MichaelBlakeGallery4-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"MichaelBlakeGallery4-600x1067.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1067;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1032,124,'_wp_attached_file','2021/08/MichaelBlakeGallery3.jpg'),(1033,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:32:\"2021/08/MichaelBlakeGallery3.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1034,125,'_wp_attached_file','2021/08/MichaelBlakeGallery2.jpg'),(1035,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:554;s:4:\"file\";s:32:\"2021/08/MichaelBlakeGallery2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-600x519.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-600x519.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1036,126,'_wp_attached_file','2021/08/MichaelBlakeGallery1-rotated.jpg'),(1037,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:40:\"2021/08/MichaelBlakeGallery1-rotated.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeGallery1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeGallery1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603884164\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"MichaelBlakeGallery1.jpg\";}'),(1038,127,'_wp_attached_file','2021/08/MichaelBlakeGallery.jpg'),(1039,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:640;s:4:\"file\";s:31:\"2021/08/MichaelBlakeGallery.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeGallery-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeGallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"MichaelBlakeGallery-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeGallery-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeGallery-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeGallery-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1569170875\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1040,128,'_elementor_edit_mode','builder'),(1041,128,'_elementor_template_type','wp-page'),(1042,128,'_elementor_version','3.3.1'),(1043,128,'_wp_page_template','default'),(1044,128,'_elementor_data','[{\"id\":\"85ce9e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4dc6f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c18930\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(1045,128,'_elementor_page_assets','a:0:{}'),(1046,129,'_elementor_edit_mode','builder'),(1047,129,'_elementor_template_type','wp-page'),(1048,129,'_elementor_version','3.3.1'),(1049,129,'_wp_page_template','default'),(1050,129,'_elementor_data','[{\"id\":\"85ce9e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4dc6f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c18930\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(1051,129,'_elementor_page_assets','a:0:{}'),(1052,130,'_elementor_edit_mode','builder'),(1053,130,'_elementor_template_type','wp-page'),(1054,130,'_elementor_version','3.3.1'),(1055,130,'_wp_page_template','default'),(1056,130,'_elementor_data','[{\"id\":\"85ce9e4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"4dc6f13\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4c18930\",\"elType\":\"widget\",\"settings\":{\"wp_gallery\":[{\"id\":119,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery9.jpg\"},{\"id\":120,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery7.jpg\"},{\"id\":121,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery6-rotated.jpg\"},{\"id\":122,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery5-rotated.jpg\"},{\"id\":123,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery4.jpg\"},{\"id\":124,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery3.jpg\"},{\"id\":125,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery2.jpg\"},{\"id\":126,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery1-rotated.jpg\"},{\"id\":127,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeGallery.jpg\"}],\"thumbnail_size\":\"full\",\"gallery_columns\":\"3\",\"gallery_link\":\"none\",\"gallery_rand\":\"rand\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false}]'),(1057,130,'_elementor_page_assets','a:0:{}'),(1058,117,'_elementor_controls_usage','a:3:{s:13:\"image-gallery\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:5:{s:10:\"wp_gallery\";i:1;s:14:\"thumbnail_size\";i:1;s:15:\"gallery_columns\";i:1;s:12:\"gallery_link\";i:1;s:12:\"gallery_rand\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(1059,131,'_wp_page_template','default'),(1060,131,'_elementor_edit_mode','builder'),(1061,131,'_elementor_template_type','wp-post'),(1062,131,'_elementor_version','3.3.1'),(1063,131,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1064,131,'_elementor_page_assets','a:0:{}'),(1065,132,'_wp_page_template','default'),(1066,132,'_elementor_edit_mode','builder'),(1067,132,'_elementor_template_type','wp-post'),(1068,132,'_elementor_version','3.3.1'),(1069,132,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1070,132,'_elementor_page_assets','a:0:{}'),(1071,133,'_wp_page_template','default'),(1072,133,'_elementor_edit_mode','builder'),(1073,133,'_elementor_template_type','wp-post'),(1074,133,'_elementor_version','3.3.1'),(1075,133,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.594999999999998863131622783839702606201171875},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.22999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Twitter\",\"ekit_socialmedia_icon_hover_bg_color\":\"#1da1f2\",\"_id\":\"95c7311\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"LinkedIn\",\"ekit_socialmedia_icon_hover_bg_color\":\"#0077b5\",\"_id\":\"b419a53\"}]},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1076,133,'_elementor_page_assets','a:0:{}'),(1085,135,'_wp_page_template','default'),(1086,135,'_elementor_edit_mode','builder'),(1087,135,'_elementor_template_type','wp-post'),(1088,135,'_elementor_version','3.3.1'),(1089,135,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.594999999999998863131622783839702606201171875},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.22999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Twitter\",\"ekit_socialmedia_icon_hover_bg_color\":\"#1da1f2\",\"_id\":\"95c7311\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"LinkedIn\",\"ekit_socialmedia_icon_hover_bg_color\":\"#0077b5\",\"_id\":\"b419a53\"}]},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1090,135,'_elementor_page_assets','a:0:{}'),(1091,136,'_wp_page_template','default'),(1092,136,'_elementor_edit_mode','builder'),(1093,136,'_elementor_template_type','wp-post'),(1094,136,'_elementor_version','3.3.1'),(1095,136,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.594999999999998863131622783839702606201171875},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.22999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Twitter\",\"ekit_socialmedia_icon_hover_bg_color\":\"#1da1f2\",\"_id\":\"95c7311\"},{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"LinkedIn\",\"ekit_socialmedia_icon_hover_bg_color\":\"#0077b5\",\"_id\":\"b419a53\"}]},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1096,136,'_elementor_page_assets','a:0:{}'),(1097,137,'_wp_page_template','default'),(1098,137,'_elementor_edit_mode','builder'),(1099,137,'_elementor_template_type','wp-post'),(1100,137,'_elementor_version','3.3.1'),(1101,137,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1102,137,'_elementor_page_assets','a:0:{}'),(1104,138,'_wp_page_template','default'),(1105,138,'_elementor_edit_mode','builder'),(1106,138,'_elementor_template_type','wp-post'),(1107,138,'_elementor_version','3.3.1'),(1108,138,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1109,138,'_elementor_page_assets','a:0:{}'),(1110,139,'_wp_page_template','default'),(1111,139,'_elementor_edit_mode','builder'),(1112,139,'_elementor_template_type','wp-post'),(1113,139,'_elementor_version','3.3.1'),(1114,139,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1115,139,'_elementor_page_assets','a:0:{}'),(1116,140,'_wp_page_template','default'),(1117,140,'_elementor_edit_mode','builder'),(1118,140,'_elementor_template_type','wp-post'),(1119,140,'_elementor_version','3.3.1'),(1120,140,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1121,140,'_elementor_page_assets','a:0:{}'),(1127,5,'_edit_lock','1633376241:1'),(1128,141,'_elementor_edit_mode','builder'),(1129,141,'_elementor_template_type','kit'),(1131,5,'_wp_page_template','default'),(1132,5,'_elementor_page_settings','a:13:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#980909\";s:9:\"site_name\";s:29:\"Michael Blake Men's Wear\";s:16:\"site_description\";s:41:\"Custom clothing in the way that suits you\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(1133,5,'_elementor_data','[]'),(1134,142,'_elementor_edit_mode','builder'),(1135,142,'_elementor_template_type','kit'),(1137,142,'_wp_page_template','default'),(1138,142,'_elementor_page_settings','a:13:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#980909\";s:9:\"site_name\";s:29:\"Michael Blake Men's Wear\";s:16:\"site_description\";s:27:\"Just another WordPress site\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(1139,142,'_elementor_data','[]'),(1140,5,'_elementor_page_assets','a:0:{}'),(1141,5,'_elementor_version','3.4.4'),(1146,143,'_wp_attached_file','2021/08/MichaelBlakeHomePageBackground.jpg'),(1147,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:42:\"2021/08/MichaelBlakeHomePageBackground.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"MichaelBlakeHomePageBackground-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"MichaelBlakeHomePageBackground-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"MichaelBlakeHomePageBackground-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1148,144,'_elementor_edit_mode','builder'),(1149,144,'_elementor_template_type','wp-page'),(1150,144,'_elementor_version','3.3.1'),(1151,144,'_wp_page_template','default'),(1152,144,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePage.jpg\",\"id\":93,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f6b5731\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1153,144,'_elementor_page_assets','a:0:{}'),(1154,144,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1155,145,'_elementor_edit_mode','builder'),(1156,145,'_elementor_template_type','wp-page'),(1157,145,'_elementor_version','3.3.1'),(1158,145,'_wp_page_template','default'),(1159,145,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePage.jpg\",\"id\":93,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"2a33901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Michael blake men\'s wear\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb426d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"shop our store\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9741ddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f6b5731\",\"elType\":\"widget\",\"settings\":{\"text\":\"Shop Womens\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"500\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_element_width\":\"auto\",\"_element_vertical_align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000094\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1160,145,'_elementor_page_assets','a:0:{}'),(1161,145,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1162,146,'_elementor_edit_mode','builder'),(1163,146,'_elementor_template_type','wp-page'),(1164,146,'_elementor_version','3.3.1'),(1165,146,'_wp_page_template','default'),(1166,146,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1167,146,'_elementor_page_assets','a:0:{}'),(1168,146,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1170,147,'_wp_attached_file','2021/08/10SecAllPair-Promo.mp4'),(1171,147,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:11308562;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:11;s:16:\"length_formatted\";s:4:\"0:11\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1622832144;}'),(1172,148,'_wp_attached_file','2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4'),(1173,148,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:3077655;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:15;s:16:\"length_formatted\";s:4:\"0:15\";s:5:\"width\";i:720;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:44100;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1591630629;}'),(1174,149,'_elementor_edit_mode','builder'),(1175,149,'_elementor_template_type','wp-page'),(1176,149,'_elementor_version','3.3.1'),(1177,149,'_wp_page_template','default'),(1178,149,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1179,149,'_elementor_page_assets','a:0:{}'),(1180,149,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1181,150,'_elementor_edit_mode','builder'),(1182,150,'_elementor_template_type','wp-page'),(1183,150,'_elementor_version','3.3.1'),(1184,150,'_wp_page_template','default'),(1185,150,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"20\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.332999999999998408384271897375583648681640625,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.667000000000001591615728102624416351318359375,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1186,150,'_elementor_page_assets','a:0:{}'),(1187,150,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1188,151,'_elementor_edit_mode','builder'),(1189,151,'_elementor_template_type','wp-page'),(1190,151,'_elementor_version','3.3.1'),(1191,151,'_wp_page_template','default'),(1192,151,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1193,151,'_elementor_page_assets','a:0:{}'),(1194,151,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1197,152,'_elementor_edit_mode','builder'),(1198,152,'_elementor_template_type','wp-page'),(1199,152,'_elementor_version','3.3.1'),(1200,152,'_wp_page_template','default'),(1201,152,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1202,152,'_elementor_page_assets','a:0:{}'),(1203,152,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1205,153,'_elementor_edit_mode','builder'),(1206,153,'_elementor_template_type','wp-page'),(1207,153,'_elementor_version','3.3.1'),(1208,153,'_wp_page_template','default'),(1209,153,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1210,153,'_elementor_page_assets','a:0:{}'),(1211,153,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1213,154,'_elementor_edit_mode','builder'),(1214,154,'_elementor_template_type','wp-page'),(1215,154,'_elementor_version','3.3.1'),(1216,154,'_wp_page_template','default'),(1217,154,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1218,154,'_elementor_page_assets','a:0:{}'),(1219,154,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1233,156,'_elementor_edit_mode','builder'),(1234,156,'_elementor_template_type','wp-page'),(1235,156,'_elementor_version','3.3.1'),(1236,156,'_wp_page_template','default'),(1237,156,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1238,156,'_elementor_page_assets','a:0:{}'),(1239,156,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1241,157,'_elementor_edit_mode','builder'),(1242,157,'_elementor_template_type','wp-page'),(1243,157,'_elementor_version','3.3.1'),(1244,157,'_wp_page_template','default'),(1245,157,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4ca331\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"78166fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4b38e98\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a661012\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"09df9bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1246,157,'_elementor_page_assets','a:0:{}'),(1247,157,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1249,158,'_elementor_edit_mode','builder'),(1250,158,'_elementor_template_type','wp-page'),(1251,158,'_elementor_version','3.3.1'),(1252,158,'_wp_page_template','default'),(1253,158,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1254,158,'_elementor_page_assets','a:0:{}'),(1255,158,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1259,159,'_elementor_edit_mode','builder'),(1260,159,'_elementor_template_type','wp-page'),(1261,159,'_elementor_version','3.3.1'),(1262,159,'_wp_page_template','default'),(1263,159,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1264,159,'_elementor_page_assets','a:0:{}'),(1265,159,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1267,160,'_elementor_edit_mode','builder'),(1268,160,'_elementor_template_type','wp-page'),(1269,160,'_elementor_version','3.3.1'),(1270,160,'_wp_page_template','default'),(1271,160,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Men\'s wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experience\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1272,160,'_elementor_page_assets','a:0:{}'),(1273,160,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1275,161,'_elementor_edit_mode','builder'),(1276,161,'_elementor_template_type','wp-page'),(1277,161,'_elementor_version','3.3.1'),(1278,161,'_wp_page_template','default'),(1279,161,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1280,161,'_elementor_page_assets','a:0:{}'),(1281,161,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1305,168,'_wp_attached_file','2021/08/MichaelBlakeEyewear.jpg'),(1306,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:31:\"2021/08/MichaelBlakeEyewear.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"MichaelBlakeEyewear-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1307,169,'_wp_attached_file','2021/08/MichaelBlakeEyewear1-1.jpg'),(1308,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1125;s:4:\"file\";s:34:\"2021/08/MichaelBlakeEyewear1-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"MichaelBlakeEyewear1-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1309,170,'_wp_attached_file','2021/08/MichaelBlakeEyewear2.jpg'),(1310,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:32:\"2021/08/MichaelBlakeEyewear2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"MichaelBlakeEyewear2-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1311,171,'_wp_attached_file','2021/08/MichaelBlakeEyewear3-1.jpg'),(1312,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:34:\"2021/08/MichaelBlakeEyewear3-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"MichaelBlakeEyewear3-1-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"MichaelBlakeEyewear3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1313,172,'_wp_attached_file','2021/08/MichaelBlakeEyewear4.jpg'),(1314,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:997;s:4:\"file\";s:32:\"2021/08/MichaelBlakeEyewear4.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"MichaelBlakeEyewear4-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"MichaelBlakeEyewear4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1318,173,'_menu_item_type','post_type'),(1319,173,'_menu_item_menu_item_parent','0'),(1320,173,'_menu_item_object_id','117'),(1321,173,'_menu_item_object','page'),(1322,173,'_menu_item_target',''),(1323,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1324,173,'_menu_item_xfn',''),(1325,173,'_menu_item_url',''),(1327,174,'_menu_item_type','post_type'),(1328,174,'_menu_item_menu_item_parent','0'),(1329,174,'_menu_item_object_id','97'),(1330,174,'_menu_item_object','page'),(1331,174,'_menu_item_target',''),(1332,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1333,174,'_menu_item_xfn',''),(1334,174,'_menu_item_url',''),(1345,176,'_wp_page_template','default'),(1346,176,'_elementor_edit_mode','builder'),(1347,176,'_elementor_template_type','wp-post'),(1348,176,'_elementor_version','3.3.1'),(1349,176,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1350,176,'_elementor_page_assets','a:0:{}'),(1352,177,'_wp_page_template','default'),(1353,177,'_elementor_edit_mode','builder'),(1354,177,'_elementor_template_type','wp-post'),(1355,177,'_elementor_version','3.3.1'),(1356,177,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1357,177,'_elementor_page_assets','a:0:{}'),(1359,178,'_wp_page_template','default'),(1360,178,'_elementor_edit_mode','builder'),(1361,178,'_elementor_template_type','wp-post'),(1362,178,'_elementor_version','3.3.1'),(1363,178,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(1364,178,'_elementor_page_assets','a:0:{}'),(1369,179,'_elementor_edit_mode','builder'),(1370,179,'_elementor_template_type','wp-page'),(1371,179,'_elementor_version','3.3.1'),(1372,179,'_wp_page_template','default'),(1373,179,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1374,179,'_elementor_page_assets','a:0:{}'),(1375,179,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1377,180,'_elementor_edit_mode','builder'),(1378,180,'_elementor_template_type','wp-page'),(1379,180,'_elementor_version','3.3.1'),(1380,180,'_wp_page_template','default'),(1381,180,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\"},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1382,180,'_elementor_page_assets','a:0:{}'),(1383,180,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1385,181,'_elementor_edit_mode','builder'),(1386,181,'_elementor_template_type','wp-page'),(1387,181,'_elementor_version','3.3.1'),(1388,181,'_wp_page_template','default'),(1389,181,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1390,181,'_elementor_page_assets','a:0:{}'),(1391,181,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1398,183,'_edit_lock','1629734613:2'),(1399,183,'_edit_last','2'),(1400,184,'_wp_attached_file','2021/08/red-monk.jpeg'),(1401,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:938;s:4:\"file\";s:21:\"2021/08/red-monk.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"red-monk-240x300.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"red-monk-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"red-monk-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"red-monk-600x750.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"red-monk-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"red-monk-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"red-monk-600x750.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"red-monk-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1402,185,'_wp_attached_file','2021/08/blue-monk.jpeg'),(1403,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:22:\"2021/08/blue-monk.jpeg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"blue-monk-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"blue-monk-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"blue-monk-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"blue-monk-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"blue-monk-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"blue-monk-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"blue-monk-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"blue-monk-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"blue-monk-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1404,183,'_regular_price','100'),(1405,183,'total_sales','0'),(1406,183,'_tax_status','taxable'),(1407,183,'_tax_class',''),(1408,183,'_manage_stock','no'),(1409,183,'_backorders','no'),(1410,183,'_sold_individually','no'),(1411,183,'_virtual','no'),(1412,183,'_downloadable','no'),(1413,183,'_download_limit','-1'),(1414,183,'_download_expiry','-1'),(1415,183,'_stock',NULL),(1416,183,'_stock_status','instock'),(1417,183,'_wc_average_rating','0'),(1418,183,'_wc_review_count','0'),(1419,183,'_product_version','5.5.2'),(1420,183,'_price','100'),(1421,183,'ekit_post_views_count','123'),(1422,186,'_wp_attached_file','2021/08/beits.jpeg'),(1423,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2021/08/beits.jpeg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"beits-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"beits-1024x1024.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"beits-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"beits-768x768.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"beits-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"beits-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"beits-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"beits-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"beits-600x600.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"beits-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1424,187,'_wp_attached_file','2021/08/IMG_0073-1.png'),(1425,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2021/08/IMG_0073-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_0073-1-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_0073-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_0073-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_0073-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"IMG_0073-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_0073-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1426,183,'_thumbnail_id','187'),(1427,188,'_elementor_edit_mode','builder'),(1428,188,'_elementor_template_type','wp-page'),(1429,188,'_elementor_version','3.3.1'),(1430,188,'_wp_page_template','default'),(1431,188,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1432,188,'_elementor_page_assets','a:0:{}'),(1433,188,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1435,189,'_elementor_edit_mode','builder'),(1436,189,'_elementor_template_type','wp-page'),(1437,189,'_elementor_version','3.3.1'),(1438,189,'_wp_page_template','default'),(1439,189,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1440,189,'_elementor_page_assets','a:0:{}'),(1441,189,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1443,190,'_elementor_edit_mode','builder'),(1444,190,'_elementor_template_type','wp-page'),(1445,190,'_elementor_version','3.3.1'),(1446,190,'_wp_page_template','default'),(1447,190,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1448,190,'_elementor_page_assets','a:0:{}'),(1449,190,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1460,192,'_elementor_edit_mode','builder'),(1461,192,'_elementor_template_type','wp-page'),(1462,192,'_elementor_version','3.3.1'),(1463,192,'_wp_page_template','default'),(1464,192,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1465,192,'_elementor_page_assets','a:0:{}'),(1466,192,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1467,193,'_elementor_edit_mode','builder'),(1468,193,'_elementor_template_type','wp-page'),(1469,193,'_elementor_version','3.3.1'),(1470,193,'_wp_page_template','default'),(1471,193,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1472,193,'_elementor_page_assets','a:0:{}'),(1473,193,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1474,194,'_elementor_edit_mode','builder'),(1475,194,'_elementor_template_type','wp-page'),(1476,194,'_elementor_version','3.3.1'),(1477,194,'_wp_page_template','default'),(1478,194,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1479,194,'_elementor_page_assets','a:0:{}'),(1480,194,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1482,195,'_edit_lock','1629734583:1'),(1483,195,'_edit_last','1'),(1484,195,'_elementor_edit_mode','builder'),(1485,195,'_elementor_template_type','wp-page'),(1486,195,'_elementor_version','3.3.1'),(1487,195,'_wp_page_template','default'),(1488,195,'_elementor_data','[{\"id\":\"36dda3d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"517a3544\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75cdb433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":143,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b61c1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b6dbd55\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b76c29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Michael Blake Menswear our mission is to help men discover the joy of dressing, to help them define their personal style, and make it easy to access those items. To connect them with the idea that men can care about their appearance and still be masculine.<\\/p><p>\\u00a0<\\/p><p>Michael Blake <\\/p>\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1489,195,'_elementor_page_assets','a:0:{}'),(1490,197,'_wp_attached_file','2021/08/wh1.jpg'),(1491,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:590;s:6:\"height\";i:400;s:4:\"file\";s:15:\"2021/08/wh1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"wh1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"wh1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"wh1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"wh1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"wh1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"wh1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1492,197,'_elementor_source_image_hash','ad695931d5913373ad7fc713d7b7189cf763ac13'),(1493,198,'_elementor_edit_mode','builder'),(1494,198,'_elementor_template_type','wp-page'),(1495,198,'_elementor_version','3.3.1'),(1496,198,'_wp_page_template','default'),(1497,198,'_elementor_data','[]'),(1498,198,'_elementor_page_assets','a:0:{}'),(1499,199,'_elementor_edit_mode','builder'),(1500,199,'_elementor_template_type','wp-page'),(1501,199,'_elementor_version','3.3.1'),(1502,199,'_wp_page_template','default'),(1503,199,'_elementor_data','[]'),(1504,199,'_elementor_page_assets','a:0:{}'),(1505,195,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1506,200,'_elementor_edit_mode','builder'),(1507,200,'_elementor_template_type','wp-page'),(1508,200,'_elementor_version','3.3.1'),(1509,200,'_wp_page_template','default'),(1510,200,'_elementor_data','[{\"id\":\"36dda3d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"517a3544\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75cdb433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":143,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b61c1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b6dbd55\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b76c29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop<\\/p>\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1511,200,'_elementor_page_assets','a:0:{}'),(1512,200,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1514,201,'_elementor_edit_mode','builder'),(1515,201,'_elementor_template_type','wp-page'),(1516,201,'_elementor_version','3.3.1'),(1517,201,'_wp_page_template','default'),(1518,201,'_elementor_data','[{\"id\":\"36dda3d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"517a3544\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75cdb433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":143,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b61c1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b6dbd55\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b76c29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop<\\/p>\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1519,201,'_elementor_page_assets','a:0:{}'),(1520,201,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1521,202,'_elementor_edit_mode','builder'),(1522,202,'_elementor_template_type','wp-page'),(1523,202,'_elementor_version','3.3.1'),(1524,202,'_wp_page_template','default'),(1525,202,'_elementor_data','[{\"id\":\"36dda3d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"517a3544\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75cdb433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":143,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b61c1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b6dbd55\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b76c29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop<\\/p>\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1526,202,'_elementor_page_assets','a:0:{}'),(1527,202,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1528,203,'_elementor_edit_mode','builder'),(1529,203,'_elementor_template_type','wp-page'),(1530,203,'_elementor_version','3.3.1'),(1531,203,'_wp_page_template','default'),(1532,203,'_elementor_data','[{\"id\":\"36dda3d5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":800},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"25\",\"bottom\":\"100\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"517a3544\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"75cdb433\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":143,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6b61c1bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b6dbd55\",\"elType\":\"widget\",\"settings\":{\"title\":\"About the company\",\"header_size\":\"h4\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b76c29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Michael Blake Menswear our mission is to help men discover the joy of dressing, to help them define their personal style, and make it easy to access those items. To connect them with the idea that men can care about their appearance and still be masculine.<\\/p><p>\\u00a0<\\/p><p>Michael Blake <\\/p>\",\"text_color\":\"#686868\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1533,203,'_elementor_page_assets','a:0:{}'),(1534,203,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1535,195,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:5:\"align\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:1;s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1537,204,'_menu_item_type','post_type'),(1538,204,'_menu_item_menu_item_parent','0'),(1539,204,'_menu_item_object_id','195'),(1540,204,'_menu_item_object','page'),(1541,204,'_menu_item_target',''),(1542,204,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1543,204,'_menu_item_xfn',''),(1544,204,'_menu_item_url',''),(1547,205,'_elementor_edit_mode','builder'),(1548,205,'_elementor_template_type','landing-page'),(1549,206,'_elementor_edit_mode','builder'),(1550,206,'_elementor_template_type','landing-page'),(1551,207,'_elementor_edit_mode','builder'),(1552,207,'_elementor_template_type','landing-page'),(1553,205,'_wp_page_template','elementor_canvas'),(1554,205,'_elementor_version','3.3.1'),(1555,208,'_elementor_edit_mode','builder'),(1556,208,'_elementor_template_type','landing-page'),(1557,208,'_wp_page_template','elementor_canvas'),(1558,208,'_elementor_version','3.3.1'),(1559,205,'_edit_lock','1629733026:2'),(1560,205,'ekit_post_views_count','1'),(1562,210,'_edit_lock','1629733923:2'),(1563,210,'_edit_last','2'),(1564,211,'_wp_attached_file','2021/08/ms152-3.png'),(1565,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/08/ms152-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ms152-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ms152-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"ms152-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"ms152-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms152-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"ms152-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"ms152-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms152-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1566,212,'_wp_attached_file','2021/08/loafer153-3.png'),(1567,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:23:\"2021/08/loafer153-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"loafer153-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"loafer153-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"loafer153-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"loafer153-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"loafer153-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"loafer153-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"loafer153-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"loafer153-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1568,213,'_wp_attached_file','2021/08/ms138-3.png'),(1569,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/08/ms138-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ms138-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ms138-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"ms138-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"ms138-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms138-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"ms138-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"ms138-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms138-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1570,214,'_wp_attached_file','2021/08/ms147-3.png'),(1571,214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/08/ms147-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ms147-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ms147-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"ms147-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"ms147-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms147-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"ms147-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"ms147-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms147-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1572,215,'_wp_attached_file','2021/08/ms154-3.png'),(1573,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/08/ms154-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ms154-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ms154-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"ms154-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"ms154-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms154-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"ms154-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"ms154-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms154-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1574,216,'_wp_attached_file','2021/08/ms148-3.png'),(1575,216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/08/ms148-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"ms148-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"ms148-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"ms148-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"ms148-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms148-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"ms148-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"ms148-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"ms148-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1576,210,'_regular_price','250'),(1577,210,'total_sales','0'),(1578,210,'_tax_status','taxable'),(1579,210,'_tax_class',''),(1580,210,'_manage_stock','no'),(1581,210,'_backorders','no'),(1582,210,'_sold_individually','no'),(1583,210,'_virtual','no'),(1584,210,'_downloadable','no'),(1585,210,'_download_limit','-1'),(1586,210,'_download_expiry','-1'),(1587,210,'_stock',NULL),(1588,210,'_stock_status','instock'),(1589,210,'_wc_average_rating','0'),(1590,210,'_wc_review_count','0'),(1591,210,'_product_version','5.5.2'),(1592,210,'_price','250'),(1593,210,'ekit_post_views_count','91'),(1594,210,'_thumbnail_id','185'),(1595,218,'_wp_attached_file','2021/08/beits-1.png'),(1596,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:19:\"2021/08/beits-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"beits-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"beits-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"beits-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"beits-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"beits-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"beits-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"beits-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"beits-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1598,220,'_edit_lock','1631623709:2'),(1599,220,'_edit_last','2'),(1600,221,'_wp_attached_file','2021/08/IMG_2490.png'),(1601,221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/08/IMG_2490.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_2490-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2490-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2490-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2490-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_2490-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2490-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1602,222,'_wp_attached_file','2021/08/IMG_1085.png'),(1603,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/IMG_1085.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1085-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1085-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1085-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_1085-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1085-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1085-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_1085-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1085-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1604,223,'_wp_attached_file','2021/08/IMG_1084.png'),(1605,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/IMG_1084.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1084-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1084-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1084-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_1084-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1084-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1084-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_1084-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1084-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1606,224,'_wp_attached_file','2021/08/IMG_1086.png'),(1607,224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/IMG_1086.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1086-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1086-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1086-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_1086-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1086-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1086-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_1086-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1086-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1614,226,'_menu_item_type','custom'),(1615,226,'_menu_item_menu_item_parent','38'),(1616,226,'_menu_item_object_id','226'),(1617,226,'_menu_item_object','custom'),(1618,226,'_menu_item_target',''),(1619,226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1620,226,'_menu_item_xfn',''),(1621,226,'_menu_item_url','https://michaelblakemenswear.com/product-category/accessories/shoes/'),(1623,227,'_menu_item_type','custom'),(1624,227,'_menu_item_menu_item_parent','38'),(1625,227,'_menu_item_object_id','227'),(1626,227,'_menu_item_object','custom'),(1627,227,'_menu_item_target',''),(1628,227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1629,227,'_menu_item_xfn',''),(1630,227,'_menu_item_url','https://michaelblakemenswear.com/product-category/accessories/fragrances/'),(1632,228,'_menu_item_type','custom'),(1633,228,'_menu_item_menu_item_parent','38'),(1634,228,'_menu_item_object_id','228'),(1635,228,'_menu_item_object','custom'),(1636,228,'_menu_item_target',''),(1637,228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1638,228,'_menu_item_xfn',''),(1639,228,'_menu_item_url','https://michaelblakemenswear.com/product-category/accessories/bags/'),(1641,229,'_menu_item_type','custom'),(1642,229,'_menu_item_menu_item_parent','38'),(1643,229,'_menu_item_object_id','229'),(1644,229,'_menu_item_object','custom'),(1645,229,'_menu_item_target',''),(1646,229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1647,229,'_menu_item_xfn',''),(1648,229,'_menu_item_url','https://michaelblakemenswear.com/product-category/accessories/eyewear/'),(1650,35,'_wp_old_date','2021-08-23'),(1651,36,'_wp_old_date','2021-08-23'),(1652,37,'_wp_old_date','2021-08-23'),(1653,38,'_wp_old_date','2021-08-23'),(1654,89,'_wp_old_date','2021-08-23'),(1655,40,'_wp_old_date','2021-08-23'),(1656,230,'_elementor_edit_mode','builder'),(1657,230,'_elementor_template_type','wp-page'),(1658,230,'_elementor_version','3.3.1'),(1659,230,'_wp_page_template','default'),(1660,230,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1661,230,'_elementor_page_assets','a:0:{}'),(1662,230,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1664,231,'_elementor_edit_mode','builder'),(1665,231,'_elementor_template_type','wp-page'),(1666,231,'_elementor_version','3.3.1'),(1667,231,'_wp_page_template','default'),(1668,231,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1669,231,'_elementor_page_assets','a:0:{}'),(1670,231,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1672,232,'_elementor_edit_mode','builder'),(1673,232,'_elementor_template_type','wp-page'),(1674,232,'_elementor_version','3.3.1'),(1675,232,'_wp_page_template','default'),(1676,232,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1677,232,'_elementor_page_assets','a:0:{}'),(1678,232,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1681,233,'_elementor_edit_mode','builder'),(1682,233,'_elementor_template_type','wp-page'),(1683,233,'_elementor_version','3.4.2'),(1684,233,'_wp_page_template','default'),(1685,233,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1686,233,'_elementor_page_assets','a:0:{}'),(1687,233,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1688,234,'_elementor_edit_mode','builder'),(1689,234,'_elementor_template_type','wp-page'),(1690,234,'_elementor_version','3.4.2'),(1691,234,'_wp_page_template','default'),(1692,234,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1693,234,'_elementor_page_assets','a:0:{}'),(1694,234,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1695,235,'_elementor_edit_mode','builder'),(1696,235,'_elementor_template_type','wp-page'),(1697,235,'_elementor_version','3.4.2'),(1698,235,'_wp_page_template','default'),(1699,235,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1700,235,'_elementor_page_assets','a:0:{}'),(1701,235,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1704,236,'_elementor_edit_mode','builder'),(1705,236,'_elementor_template_type','wp-page'),(1706,236,'_elementor_version','3.4.2'),(1707,236,'_wp_page_template','default'),(1708,236,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1709,236,'_elementor_page_assets','a:0:{}'),(1710,236,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1712,237,'_elementor_edit_mode','builder'),(1713,237,'_elementor_template_type','wp-page'),(1714,237,'_elementor_version','3.4.2'),(1715,237,'_wp_page_template','default'),(1716,237,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":650,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1717,237,'_elementor_page_assets','a:0:{}'),(1718,237,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1720,238,'_elementor_edit_mode','builder'),(1721,238,'_elementor_template_type','wp-page'),(1722,238,'_elementor_version','3.4.2'),(1723,238,'_wp_page_template','default'),(1724,238,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1725,238,'_elementor_page_assets','a:0:{}'),(1726,238,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1730,239,'_elementor_edit_mode','builder'),(1731,239,'_elementor_template_type','wp-page'),(1732,239,'_elementor_version','3.4.2'),(1733,239,'_wp_page_template','default'),(1734,239,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1735,239,'_elementor_page_assets','a:0:{}'),(1736,239,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1738,240,'_elementor_edit_mode','builder'),(1739,240,'_elementor_template_type','wp-page'),(1740,240,'_elementor_version','3.4.2'),(1741,240,'_wp_page_template','default'),(1742,240,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1743,240,'_elementor_page_assets','a:0:{}'),(1744,240,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1746,241,'_elementor_edit_mode','builder'),(1747,241,'_elementor_template_type','wp-page'),(1748,241,'_elementor_version','3.4.2'),(1749,241,'_wp_page_template','default'),(1750,241,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1751,241,'_elementor_page_assets','a:0:{}'),(1752,241,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1755,242,'_elementor_edit_mode','builder'),(1756,242,'_elementor_template_type','wp-page'),(1757,242,'_elementor_version','3.4.2'),(1758,242,'_wp_page_template','default'),(1759,242,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1760,242,'_elementor_page_assets','a:0:{}'),(1761,242,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1762,243,'_elementor_edit_mode','builder'),(1763,243,'_elementor_template_type','wp-page'),(1764,243,'_elementor_version','3.4.2'),(1765,243,'_wp_page_template','default'),(1766,243,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1767,243,'_elementor_page_assets','a:0:{}'),(1768,243,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1769,244,'_elementor_edit_mode','builder'),(1770,244,'_elementor_template_type','wp-page'),(1771,244,'_elementor_version','3.4.2'),(1772,244,'_wp_page_template','default'),(1773,244,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(1774,244,'_elementor_page_assets','a:0:{}'),(1775,244,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1778,245,'_wp_page_template','default'),(1779,245,'_elementor_edit_mode','builder'),(1780,245,'_elementor_template_type','wp-post'),(1781,245,'_elementor_version','3.3.1'),(1782,245,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1783,245,'_elementor_page_assets','a:0:{}'),(1785,246,'_wp_page_template','default'),(1786,246,'_elementor_edit_mode','builder'),(1787,246,'_elementor_template_type','wp-post'),(1788,246,'_elementor_version','3.3.1'),(1789,246,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1790,246,'_elementor_page_assets','a:0:{}'),(1792,247,'_wp_page_template','default'),(1793,247,'_elementor_edit_mode','builder'),(1794,247,'_elementor_template_type','wp-post'),(1795,247,'_elementor_version','3.3.1'),(1796,247,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_dropdown_item\":\"#000000\",\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_vertical_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1797,247,'_elementor_page_assets','a:0:{}'),(1800,248,'_wp_page_template','default'),(1801,248,'_elementor_edit_mode','builder'),(1802,248,'_elementor_template_type','wp-post'),(1803,248,'_elementor_version','3.4.2'),(1804,248,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_dropdown_item\":\"#000000\",\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_vertical_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1805,248,'_elementor_page_assets','a:0:{}'),(1806,249,'_wp_page_template','default'),(1807,249,'_elementor_edit_mode','builder'),(1808,249,'_elementor_template_type','wp-post'),(1809,249,'_elementor_version','3.4.2'),(1810,249,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_dropdown_item\":\"#000000\",\"padding_horizontal_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"padding_vertical_dropdown_item_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1811,249,'_elementor_page_assets','a:0:{}'),(1812,250,'_wp_page_template','default'),(1813,250,'_elementor_edit_mode','builder'),(1814,250,'_elementor_template_type','wp-post'),(1815,250,'_elementor_version','3.4.2'),(1816,250,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1817,250,'_elementor_page_assets','a:0:{}'),(1819,251,'_wp_page_template','default'),(1820,251,'_elementor_edit_mode','builder'),(1821,251,'_elementor_template_type','wp-post'),(1822,251,'_elementor_version','3.4.2'),(1823,251,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1824,251,'_elementor_page_assets','a:0:{}'),(1825,252,'_wp_page_template','default'),(1826,252,'_elementor_edit_mode','builder'),(1827,252,'_elementor_template_type','wp-post'),(1828,252,'_elementor_version','3.4.2'),(1829,252,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1830,252,'_elementor_page_assets','a:0:{}'),(1831,253,'_wp_page_template','default'),(1832,253,'_elementor_edit_mode','builder'),(1833,253,'_elementor_template_type','wp-post'),(1834,253,'_elementor_version','3.4.2'),(1835,253,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1836,253,'_elementor_page_assets','a:0:{}'),(1838,254,'_wp_page_template','default'),(1839,254,'_elementor_edit_mode','builder'),(1840,254,'_elementor_template_type','wp-post'),(1841,254,'_elementor_version','3.4.2'),(1842,254,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1843,254,'_elementor_page_assets','a:0:{}'),(1844,255,'_wp_page_template','default'),(1845,255,'_elementor_edit_mode','builder'),(1846,255,'_elementor_template_type','wp-post'),(1847,255,'_elementor_version','3.4.2'),(1848,255,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1849,255,'_elementor_page_assets','a:0:{}'),(1850,256,'_wp_page_template','default'),(1851,256,'_elementor_edit_mode','builder'),(1852,256,'_elementor_template_type','wp-post'),(1853,256,'_elementor_version','3.4.2'),(1854,256,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_dropdown_item\":\"#000000\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1855,256,'_elementor_page_assets','a:0:{}'),(1864,258,'_wp_page_template','default'),(1865,258,'_elementor_edit_mode','builder'),(1866,258,'_elementor_template_type','wp-post'),(1867,258,'_elementor_version','3.4.2'),(1868,258,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_dropdown_item\":\"#000000\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1869,258,'_elementor_page_assets','a:0:{}'),(1870,259,'_wp_page_template','default'),(1871,259,'_elementor_edit_mode','builder'),(1872,259,'_elementor_template_type','wp-post'),(1873,259,'_elementor_version','3.4.2'),(1874,259,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_dropdown_item\":\"#000000\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1875,259,'_elementor_page_assets','a:0:{}'),(1876,260,'_wp_page_template','default'),(1877,260,'_elementor_edit_mode','builder'),(1878,260,'_elementor_template_type','wp-post'),(1879,260,'_elementor_version','3.4.2'),(1880,260,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1881,260,'_elementor_page_assets','a:0:{}'),(1884,261,'_field_1','Tabetha '),(1885,261,'_field_5','5014107445'),(1886,261,'_field_6','08/24/2021'),(1887,261,'_field_7','Blue'),(1888,261,'_field_3','Hello I need tuxedo rentals as soon as possible. '),(1889,261,'_form_id','1'),(1890,261,'_seq_num','1'),(1891,262,'_edit_lock','1632153194:2'),(1892,262,'_edit_last','2'),(1893,263,'_wp_attached_file','2021/08/DSC_0375.png'),(1894,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/08/DSC_0375.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0375-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0375-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0375-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0375-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0375-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0375-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0375-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0375-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1895,264,'_wp_attached_file','2021/08/DSC_0381.png'),(1896,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/08/DSC_0381.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0381-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0381-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0381-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0381-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0381-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0381-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0381-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0381-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1897,265,'_wp_attached_file','2021/08/DSC_0386.png'),(1898,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/08/DSC_0386.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0386-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0386-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0386-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0386-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0386-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0386-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0386-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0386-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1899,266,'_wp_attached_file','2021/08/DSC_0388.png'),(1900,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/08/DSC_0388.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0388-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0388-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0388-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0388-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0388-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0388-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0388-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0388-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1901,267,'_wp_attached_file','2021/08/IMG_2575.png'),(1902,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2021/08/IMG_2575.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_2575-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2575-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_2575-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_2575-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2575-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_2575-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_2575-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2575-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1903,268,'_wp_attached_file','2021/08/2G5A9747.png'),(1904,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/08/2G5A9747.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A9747-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A9747-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A9747-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A9747-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A9747-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A9747-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1905,262,'_thumbnail_id','268'),(1906,262,'_regular_price','40'),(1907,262,'total_sales','0'),(1908,262,'_tax_status','taxable'),(1909,262,'_tax_class',''),(1910,262,'_manage_stock','no'),(1911,262,'_backorders','no'),(1912,262,'_sold_individually','no'),(1913,262,'_virtual','no'),(1914,262,'_downloadable','no'),(1915,262,'_download_limit','-1'),(1916,262,'_download_expiry','-1'),(1917,262,'_stock',NULL),(1918,262,'_stock_status','instock'),(1919,262,'_wc_average_rating','0'),(1920,262,'_wc_review_count','0'),(1921,262,'_product_version','5.6.0'),(1922,262,'_price','40'),(1923,262,'_product_image_gallery','124,123,122'),(1924,262,'ekit_post_views_count','122'),(1925,269,'_edit_lock','1630868758:2'),(1926,269,'_edit_last','2'),(1927,270,'_wp_attached_file','2021/08/canvas-bag-1.png'),(1928,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:24:\"2021/08/canvas-bag-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"canvas-bag-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1929,271,'_wp_attached_file','2021/08/canvas-bag-2.png'),(1930,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:24:\"2021/08/canvas-bag-2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"canvas-bag-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1931,272,'_wp_attached_file','2021/08/canvas-bag-3.png'),(1932,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:24:\"2021/08/canvas-bag-3.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"canvas-bag-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"canvas-bag-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1933,273,'_wp_attached_file','2021/08/IMG_2490-1.png'),(1934,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2021/08/IMG_2490-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_2490-1-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_2490-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_2490-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_2490-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"IMG_2490-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_2490-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1935,269,'_thumbnail_id','373'),(1936,269,'_regular_price','250'),(1937,269,'total_sales','0'),(1938,269,'_tax_status','taxable'),(1939,269,'_tax_class',''),(1940,269,'_manage_stock','no'),(1941,269,'_backorders','no'),(1942,269,'_sold_individually','no'),(1943,269,'_virtual','no'),(1944,269,'_downloadable','no'),(1945,269,'_download_limit','-1'),(1946,269,'_download_expiry','-1'),(1947,269,'_stock',NULL),(1948,269,'_stock_status','instock'),(1949,269,'_wc_average_rating','0'),(1950,269,'_wc_review_count','0'),(1951,269,'_product_version','5.6.0'),(1952,269,'_price','250'),(1953,269,'ekit_post_views_count','129'),(1954,275,'_edit_lock','1629819626:2'),(1955,275,'_edit_last','2'),(1956,276,'_wp_attached_file','2021/08/IMG_1157.png'),(1957,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/08/IMG_1157.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1157-236x300.png\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1157-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1157-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1157-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1157-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1157-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1958,277,'_wp_attached_file','2021/08/IMG_1158.png'),(1959,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/08/IMG_1158.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1158-218x300.png\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1158-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1158-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1158-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1158-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1158-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1960,278,'_wp_attached_file','2021/08/IMG_1159.png'),(1961,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:430;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/08/IMG_1159.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1159-202x300.png\";s:5:\"width\";i:202;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1159-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1159-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1159-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1159-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1159-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1962,279,'_wp_attached_file','2021/08/IMG_1160.png'),(1963,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/08/IMG_1160.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1160-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1160-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1160-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_1160-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1160-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1160-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_1160-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1160-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1966,275,'_regular_price','45'),(1967,275,'total_sales','0'),(1968,275,'_tax_status','taxable'),(1969,275,'_tax_class',''),(1970,275,'_manage_stock','no'),(1971,275,'_backorders','no'),(1972,275,'_sold_individually','no'),(1973,275,'_virtual','no'),(1974,275,'_downloadable','no'),(1975,275,'_download_limit','-1'),(1976,275,'_download_expiry','-1'),(1977,275,'_stock',NULL),(1978,275,'_stock_status','instock'),(1979,275,'_wc_average_rating','0'),(1980,275,'_wc_review_count','0'),(1981,275,'_product_version','5.6.0'),(1982,275,'_price','45'),(1983,275,'ekit_post_views_count','117'),(1984,280,'_edit_lock','1629819047:2'),(1985,280,'_edit_last','2'),(1986,280,'_thumbnail_id','277'),(1987,280,'_regular_price','45'),(1988,280,'total_sales','0'),(1989,280,'_tax_status','taxable'),(1990,280,'_tax_class',''),(1991,280,'_manage_stock','no'),(1992,280,'_backorders','no'),(1993,280,'_sold_individually','no'),(1994,280,'_virtual','no'),(1995,280,'_downloadable','no'),(1996,280,'_download_limit','-1'),(1997,280,'_download_expiry','-1'),(1998,280,'_stock',NULL),(1999,280,'_stock_status','instock'),(2000,280,'_wc_average_rating','0'),(2001,280,'_wc_review_count','0'),(2002,280,'_product_version','5.6.0'),(2003,280,'_price','45'),(2004,280,'_product_image_gallery','277,278'),(2005,280,'ekit_post_views_count','87'),(2006,275,'_thumbnail_id','278'),(2008,282,'_elementor_edit_mode','builder'),(2009,282,'_elementor_template_type','landing-page'),(2010,283,'_elementor_edit_mode','builder'),(2011,283,'_elementor_template_type','landing-page'),(2012,284,'_elementor_edit_mode','builder'),(2013,284,'_elementor_template_type','landing-page'),(2014,282,'_wp_page_template','elementor_canvas'),(2015,282,'_elementor_version','3.4.2'),(2016,285,'_elementor_edit_mode','builder'),(2017,285,'_elementor_template_type','landing-page'),(2018,285,'_wp_page_template','elementor_canvas'),(2019,285,'_elementor_version','3.4.2'),(2020,282,'ekit_post_views_count','1'),(2021,282,'_edit_lock','1629820066:2'),(2022,286,'_wp_attached_file','2021/08/MB-Initials-No-Tag-Line.png'),(2023,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:388;s:4:\"file\";s:35:\"2021/08/MB-Initials-No-Tag-Line.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-300x182.png\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-600x364.png\";s:5:\"width\";i:600;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-600x364.png\";s:5:\"width\";i:600;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"MB-Initials-No-Tag-Line-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2024,287,'_wp_attached_file','2021/08/cropped-MB-Initials-No-Tag-Line.png'),(2025,287,'_wp_attachment_context','site-icon'),(2026,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:43:\"2021/08/cropped-MB-Initials-No-Tag-Line.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:43:\"cropped-MB-Initials-No-Tag-Line-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:41:\"cropped-MB-Initials-No-Tag-Line-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2029,289,'_edit_lock','1629902306:2'),(2030,289,'_edit_last','2'),(2031,290,'_wp_attached_file','2021/08/2G5A5502.png'),(2032,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/2G5A5502.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A5502-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A5502-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A5502-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A5502-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A5502-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A5502-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A5502-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A5502-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2033,291,'_wp_attached_file','2021/08/2G5A5525-scaled.jpg'),(2034,291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2021/08/2G5A5525-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A5525-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"2G5A5525-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A5525-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"2G5A5525-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"2G5A5525-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"2G5A5525-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A5525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A5525-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A5525-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A5525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A5525-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A5525-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602133602\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"2G5A5525.jpg\";}'),(2035,292,'_wp_attached_file','2021/08/2G5A5527.jpg'),(2036,293,'_wp_attached_file','2021/08/2G5A5529.jpg'),(2037,294,'_wp_attached_file','2021/08/2G5A5530-copy-scaled.jpg'),(2038,294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2021/08/2G5A5530-copy-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"2G5A5530-copy-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"2G5A5530-copy-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"2G5A5530-copy-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"2G5A5530-copy-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"2G5A5530-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"2G5A5530-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602133976\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"2G5A5530-copy.jpg\";}'),(2039,289,'_thumbnail_id','290'),(2040,289,'total_sales','0'),(2041,289,'_tax_status','taxable'),(2042,289,'_tax_class',''),(2043,289,'_manage_stock','no'),(2044,289,'_backorders','no'),(2045,289,'_sold_individually','no'),(2046,289,'_virtual','no'),(2047,289,'_downloadable','no'),(2048,289,'_download_limit','-1'),(2049,289,'_download_expiry','-1'),(2050,289,'_stock',NULL),(2051,289,'_stock_status','instock'),(2052,289,'_wc_average_rating','0'),(2053,289,'_wc_review_count','0'),(2054,289,'_product_version','5.6.0'),(2055,289,'ekit_post_views_count','125'),(2056,295,'_edit_lock','1629900360:2'),(2057,295,'_edit_last','2'),(2058,295,'_thumbnail_id','294'),(2059,295,'_regular_price','25'),(2060,295,'total_sales','0'),(2061,295,'_tax_status','taxable'),(2062,295,'_tax_class',''),(2063,295,'_manage_stock','no'),(2064,295,'_backorders','no'),(2065,295,'_sold_individually','no'),(2066,295,'_virtual','no'),(2067,295,'_downloadable','no'),(2068,295,'_download_limit','-1'),(2069,295,'_download_expiry','-1'),(2070,295,'_stock',NULL),(2071,295,'_stock_status','instock'),(2072,295,'_wc_average_rating','0'),(2073,295,'_wc_review_count','0'),(2074,295,'_product_version','5.6.0'),(2075,295,'_price','25'),(2076,295,'ekit_post_views_count','99'),(2077,296,'_edit_lock','1629900775:2'),(2078,296,'_edit_last','2'),(2079,296,'_thumbnail_id','292'),(2080,296,'_regular_price','17.50'),(2081,296,'total_sales','0'),(2082,296,'_tax_status','taxable'),(2083,296,'_tax_class',''),(2084,296,'_manage_stock','no'),(2085,296,'_backorders','no'),(2086,296,'_sold_individually','no'),(2087,296,'_virtual','no'),(2088,296,'_downloadable','no'),(2089,296,'_download_limit','-1'),(2090,296,'_download_expiry','-1'),(2091,296,'_stock',NULL),(2092,296,'_stock_status','instock'),(2093,296,'_wc_average_rating','0'),(2094,296,'_wc_review_count','0'),(2095,296,'_product_version','5.6.0'),(2096,296,'_price','17.50'),(2097,296,'ekit_post_views_count','101'),(2099,298,'_edit_lock','1629902339:2'),(2100,298,'_edit_last','2'),(2101,298,'_regular_price','25'),(2102,298,'total_sales','0'),(2103,298,'_tax_status','taxable'),(2104,298,'_tax_class',''),(2105,298,'_manage_stock','no'),(2106,298,'_backorders','no'),(2107,298,'_sold_individually','no'),(2108,298,'_virtual','no'),(2109,298,'_downloadable','no'),(2110,298,'_download_limit','-1'),(2111,298,'_download_expiry','-1'),(2112,298,'_stock',NULL),(2113,298,'_stock_status','instock'),(2114,298,'_wc_average_rating','0'),(2115,298,'_wc_review_count','0'),(2116,298,'_product_version','5.6.0'),(2117,298,'_price','25'),(2118,298,'ekit_post_views_count','109'),(2119,298,'_thumbnail_id','293'),(2120,299,'_edit_lock','1629901699:2'),(2121,299,'_edit_last','2'),(2122,299,'_thumbnail_id','291'),(2123,299,'_regular_price','25'),(2124,299,'total_sales','0'),(2125,299,'_tax_status','taxable'),(2126,299,'_tax_class',''),(2127,299,'_manage_stock','no'),(2128,299,'_backorders','no'),(2129,299,'_sold_individually','no'),(2130,299,'_virtual','no'),(2131,299,'_downloadable','no'),(2132,299,'_download_limit','-1'),(2133,299,'_download_expiry','-1'),(2134,299,'_stock',NULL),(2135,299,'_stock_status','instock'),(2136,299,'_wc_average_rating','0'),(2137,299,'_wc_review_count','0'),(2138,299,'_product_version','5.6.0'),(2139,299,'_price','25'),(2140,299,'ekit_post_views_count','124'),(2141,289,'_regular_price','100'),(2142,289,'_price','100'),(2175,308,'_wp_attached_file','2021/08/2G5A5502-1.png'),(2176,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:22:\"2021/08/2G5A5502-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"2G5A5502-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A5502-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2177,310,'_wp_attached_file','2021/08/4dccbdcc-38f7-4cc1-8726-30acca58b5a1.png'),(2178,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:640;s:4:\"file\";s:48:\"2021/08/4dccbdcc-38f7-4cc1-8726-30acca58b5a1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"4dccbdcc-38f7-4cc1-8726-30acca58b5a1-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"4dccbdcc-38f7-4cc1-8726-30acca58b5a1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"4dccbdcc-38f7-4cc1-8726-30acca58b5a1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"4dccbdcc-38f7-4cc1-8726-30acca58b5a1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"4dccbdcc-38f7-4cc1-8726-30acca58b5a1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"4dccbdcc-38f7-4cc1-8726-30acca58b5a1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2180,312,'_elementor_edit_mode','builder'),(2181,312,'_elementor_template_type','wp-page'),(2182,312,'_elementor_version','3.4.2'),(2183,312,'_wp_page_template','default'),(2184,312,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2185,312,'_elementor_page_assets','a:0:{}'),(2186,312,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2188,313,'_elementor_edit_mode','builder'),(2189,313,'_elementor_template_type','wp-page'),(2190,313,'_elementor_version','3.4.2'),(2191,313,'_wp_page_template','default'),(2192,313,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2193,313,'_elementor_page_assets','a:0:{}'),(2194,313,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2196,314,'_elementor_edit_mode','builder'),(2197,314,'_elementor_template_type','wp-page'),(2198,314,'_elementor_version','3.4.2'),(2199,314,'_wp_page_template','default'),(2200,314,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2201,314,'_elementor_page_assets','a:0:{}'),(2202,314,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2206,315,'_wp_attached_file','2021/08/7S8A5730-1.jpg'),(2207,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:428;s:4:\"file\";s:22:\"2021/08/7S8A5730-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"7S8A5730-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"7S8A5730-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1569171022\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"82\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(2220,317,'_elementor_edit_mode','builder'),(2221,317,'_elementor_template_type','wp-page'),(2222,317,'_elementor_version','3.4.2'),(2223,317,'_wp_page_template','default'),(2224,317,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2225,317,'_elementor_page_assets','a:0:{}'),(2226,317,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2228,318,'_elementor_edit_mode','builder'),(2229,318,'_elementor_template_type','wp-page'),(2230,318,'_elementor_version','3.4.2'),(2231,318,'_wp_page_template','default'),(2232,318,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeHomePageBackground.jpg\",\"id\":143,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"Casual wear\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2233,318,'_elementor_page_assets','a:0:{}'),(2234,318,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2236,319,'_elementor_edit_mode','builder'),(2237,319,'_elementor_template_type','wp-page'),(2238,319,'_elementor_version','3.4.2'),(2239,319,'_wp_page_template','default'),(2240,319,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2241,319,'_elementor_page_assets','a:0:{}'),(2242,319,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2246,320,'_wp_page_template','default'),(2247,320,'_elementor_edit_mode','builder'),(2248,320,'_elementor_template_type','wp-post'),(2249,320,'_elementor_version','3.4.2'),(2250,320,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2251,320,'_elementor_page_assets','a:0:{}'),(2253,321,'_wp_page_template','default'),(2254,321,'_elementor_edit_mode','builder'),(2255,321,'_elementor_template_type','wp-post'),(2256,321,'_elementor_version','3.4.2'),(2257,321,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2258,321,'_elementor_page_assets','a:0:{}'),(2260,322,'_wp_page_template','default'),(2261,322,'_elementor_edit_mode','builder'),(2262,322,'_elementor_template_type','wp-post'),(2263,322,'_elementor_version','3.4.2'),(2264,322,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2265,322,'_elementor_page_assets','a:0:{}'),(2278,324,'_elementor_edit_mode','builder'),(2279,324,'_elementor_template_type','wp-page'),(2280,324,'_elementor_version','3.4.2'),(2281,324,'_wp_page_template','default'),(2282,324,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2283,324,'_elementor_page_assets','a:0:{}'),(2284,324,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2285,325,'_elementor_edit_mode','builder'),(2286,325,'_elementor_template_type','wp-page'),(2287,325,'_elementor_version','3.4.2'),(2288,325,'_wp_page_template','default'),(2289,325,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2290,325,'_elementor_page_assets','a:0:{}'),(2291,325,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2292,326,'_elementor_edit_mode','builder'),(2293,326,'_elementor_template_type','wp-page'),(2294,326,'_elementor_version','3.4.2'),(2295,326,'_wp_page_template','default'),(2296,326,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2297,326,'_elementor_page_assets','a:0:{}'),(2298,326,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2301,327,'_wp_page_template','default'),(2302,327,'_elementor_edit_mode','builder'),(2303,327,'_elementor_template_type','wp-post'),(2304,327,'_elementor_version','3.4.2'),(2305,327,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2306,327,'_elementor_page_assets','a:0:{}'),(2308,328,'_wp_page_template','default'),(2309,328,'_elementor_edit_mode','builder'),(2310,328,'_elementor_template_type','wp-post'),(2311,328,'_elementor_version','3.4.2'),(2312,328,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2313,328,'_elementor_page_assets','a:0:{}'),(2315,329,'_wp_page_template','default'),(2316,329,'_elementor_edit_mode','builder'),(2317,329,'_elementor_template_type','wp-post'),(2318,329,'_elementor_version','3.4.2'),(2319,329,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#7A7A7A\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2320,329,'_elementor_page_assets','a:0:{}'),(2324,330,'_menu_item_type','custom'),(2325,330,'_menu_item_menu_item_parent','38'),(2326,330,'_menu_item_object_id','330'),(2327,330,'_menu_item_object','custom'),(2328,330,'_menu_item_target',''),(2329,330,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2330,330,'_menu_item_xfn',''),(2331,330,'_menu_item_url','https://michaelblakemenswear.com/product-category/accessories/grooming/'),(2333,35,'_wp_old_date','2021-08-24'),(2334,36,'_wp_old_date','2021-08-24'),(2335,37,'_wp_old_date','2021-08-24'),(2336,38,'_wp_old_date','2021-08-24'),(2337,228,'_wp_old_date','2021-08-24'),(2338,229,'_wp_old_date','2021-08-24'),(2339,227,'_wp_old_date','2021-08-24'),(2340,226,'_wp_old_date','2021-08-24'),(2341,89,'_wp_old_date','2021-08-24'),(2342,40,'_wp_old_date','2021-08-24'),(2351,331,'_elementor_edit_mode','builder'),(2352,331,'_elementor_template_type','wp-page'),(2353,331,'_elementor_version','3.4.2'),(2354,331,'_wp_page_template','default'),(2355,331,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2356,331,'_elementor_page_assets','a:0:{}'),(2357,331,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2359,332,'_elementor_edit_mode','builder'),(2360,332,'_elementor_template_type','wp-page'),(2361,332,'_elementor_version','3.4.2'),(2362,332,'_wp_page_template','default'),(2363,332,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessorries\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2364,332,'_elementor_page_assets','a:0:{}'),(2365,332,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2367,333,'_elementor_edit_mode','builder'),(2368,333,'_elementor_template_type','wp-page'),(2369,333,'_elementor_version','3.4.2'),(2370,333,'_wp_page_template','default'),(2371,333,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2372,333,'_elementor_page_assets','a:0:{}'),(2373,333,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2376,334,'_elementor_edit_mode','builder'),(2377,334,'_elementor_template_type','wp-page'),(2378,334,'_elementor_version','3.4.3'),(2379,334,'_wp_page_template','default'); INSERT INTO `wp_postmeta` VALUES (2380,334,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2381,334,'_elementor_page_assets','a:0:{}'),(2382,334,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2383,335,'_elementor_edit_mode','builder'),(2384,335,'_elementor_template_type','wp-page'),(2385,335,'_elementor_version','3.4.3'),(2386,335,'_wp_page_template','default'),(2387,335,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2388,335,'_elementor_page_assets','a:0:{}'),(2389,335,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2390,336,'_elementor_edit_mode','builder'),(2391,336,'_elementor_template_type','wp-page'),(2392,336,'_elementor_version','3.4.3'),(2393,336,'_wp_page_template','default'),(2394,336,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2395,336,'_elementor_page_assets','a:0:{}'),(2396,336,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2398,337,'_elementor_edit_mode','builder'),(2399,337,'_elementor_template_type','wp-page'),(2400,337,'_elementor_version','3.4.3'),(2401,337,'_wp_page_template','default'),(2402,337,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2403,337,'_elementor_page_assets','a:0:{}'),(2404,337,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2405,338,'_elementor_edit_mode','builder'),(2406,338,'_elementor_template_type','wp-page'),(2407,338,'_elementor_version','3.4.3'),(2408,338,'_wp_page_template','default'),(2409,338,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2410,338,'_elementor_page_assets','a:0:{}'),(2411,338,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2412,339,'_elementor_edit_mode','builder'),(2413,339,'_elementor_template_type','wp-page'),(2414,339,'_elementor_version','3.4.3'),(2415,339,'_wp_page_template','default'),(2416,339,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2417,339,'_elementor_page_assets','a:0:{}'),(2418,339,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2422,341,'_edit_lock','1638980636:2'),(2423,341,'_edit_last','2'),(2424,341,'total_sales','0'),(2425,341,'_tax_status','taxable'),(2426,341,'_tax_class',''),(2427,341,'_manage_stock','no'),(2428,341,'_backorders','no'),(2429,341,'_sold_individually','no'),(2430,341,'_virtual','no'),(2431,341,'_downloadable','no'),(2432,341,'_download_limit','-1'),(2433,341,'_download_expiry','-1'),(2434,341,'_stock',NULL),(2435,341,'_stock_status','instock'),(2436,341,'_wc_average_rating','0'),(2437,341,'_wc_review_count','0'),(2438,341,'_product_version','5.9.0'),(2439,341,'ekit_post_views_count','132'),(2440,342,'_wp_attached_file','2021/09/2G5A1626.png'),(2441,342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/09/2G5A1626.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A1626-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1626-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A1626-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A1626-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1626-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A1626-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A1626-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1626-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2457,344,'_wp_attached_file','2021/09/2G5A1626-1.png'),(2458,344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:22:\"2021/09/2G5A1626-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"2G5A1626-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A1626-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2464,345,'_wp_attached_file','2021/09/2G5A1626-2.png'),(2465,345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:22:\"2021/09/2G5A1626-2.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"2G5A1626-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"2G5A1626-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2468,346,'_wp_attached_file','2021/09/2G5A1626-2-1.png'),(2469,346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:214;s:4:\"file\";s:24:\"2021/09/2G5A1626-2-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"2G5A1626-2-1-300x201.png\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"2G5A1626-2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"2G5A1626-2-1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"2G5A1626-2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"2G5A1626-2-1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"2G5A1626-2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2475,348,'_elementor_edit_mode','builder'),(2476,348,'_elementor_template_type','wp-page'),(2477,348,'_elementor_version','3.4.3'),(2478,348,'_wp_page_template','default'),(2479,348,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2480,348,'_elementor_page_assets','a:0:{}'),(2481,348,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2483,349,'_elementor_edit_mode','builder'),(2484,349,'_elementor_template_type','wp-page'),(2485,349,'_elementor_version','3.4.3'),(2486,349,'_wp_page_template','default'),(2487,349,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2488,349,'_elementor_page_assets','a:0:{}'),(2489,349,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2491,350,'_elementor_edit_mode','builder'),(2492,350,'_elementor_template_type','wp-page'),(2493,350,'_elementor_version','3.4.3'),(2494,350,'_wp_page_template','default'),(2495,350,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW ON TUXEDO RENTALS\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2496,350,'_elementor_page_assets','a:0:{}'),(2497,350,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2501,352,'_wp_attached_file','2021/08/2G5A1540.png'),(2502,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/2G5A1540.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A1540-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1540-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A1540-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A1540-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1540-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A1540-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A1540-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1540-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2503,353,'_wp_attached_file','2021/08/2G5A1575.png'),(2504,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/2G5A1575.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A1575-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1575-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A1575-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A1575-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1575-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A1575-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A1575-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1575-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2505,354,'_wp_attached_file','2021/08/2G5A1605.png'),(2506,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:20:\"2021/08/2G5A1605.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A1605-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1605-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A1605-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A1605-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1605-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A1605-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A1605-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1605-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2507,341,'_thumbnail_id','357'),(2508,341,'_regular_price','250'),(2509,341,'_price','250'),(2510,341,'_product_attributes','a:2:{s:5:\"sizes\";a:6:{s:4:\"name\";s:5:\"SIZES\";s:5:\"value\";s:14:\"S | M | L | XL\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}s:6:\"colors\";a:6:{s:4:\"name\";s:6:\"COLORS\";s:5:\"value\";s:5:\"BROWN\";s:8:\"position\";i:1;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:0;s:11:\"is_taxonomy\";i:0;}}'),(2511,357,'_wp_attached_file','2021/09/2G5A1540-scaled.jpg'),(2512,357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2021/09/2G5A1540-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"2G5A1540-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"2G5A1540-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1540-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"2G5A1540-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"2G5A1540-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"2G5A1540-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"2G5A1540-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"2G5A1540-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1540-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"2G5A1540-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"2G5A1540-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"2G5A1540-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630168266\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"2G5A1540.jpg\";}'),(2524,359,'_elementor_edit_mode','builder'),(2525,359,'_elementor_template_type','wp-page'),(2526,359,'_elementor_version','3.4.3'),(2527,359,'_wp_page_template','default'),(2528,359,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW ON TUXEDO RENTALS\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2529,359,'_elementor_page_assets','a:0:{}'),(2530,359,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2532,360,'_elementor_edit_mode','builder'),(2533,360,'_elementor_template_type','wp-page'),(2534,360,'_elementor_version','3.4.3'),(2535,360,'_wp_page_template','default'),(2536,360,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\",\"id\":315,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW ON TUXEDO RENTALS\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"PURVEYORS OF TIMELESS STYLE\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2537,360,'_elementor_page_assets','a:0:{}'),(2538,360,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2540,361,'_elementor_edit_mode','builder'),(2541,361,'_elementor_template_type','wp-page'),(2542,361,'_elementor_version','3.4.3'),(2543,361,'_wp_page_template','default'),(2544,361,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/2G5A1540-scaled.jpg\",\"id\":357,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2545,361,'_elementor_page_assets','a:0:{}'),(2546,361,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2553,365,'_wp_attached_file','2021/09/chair-photo-scaled.jpg'),(2554,365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2021/09/chair-photo-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"chair-photo-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"chair-photo-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"chair-photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"chair-photo-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"chair-photo-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"chair-photo-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"chair-photo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"chair-photo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"chair-photo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"chair-photo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"chair-photo-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"chair-photo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630170127\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"chair-photo.jpg\";}'),(2565,367,'_elementor_edit_mode','builder'),(2566,367,'_elementor_template_type','wp-page'),(2567,367,'_elementor_version','3.4.3'),(2568,367,'_wp_page_template','default'),(2569,367,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/2G5A1540-scaled.jpg\",\"id\":357,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2570,367,'_elementor_page_assets','a:0:{}'),(2571,367,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2573,368,'_elementor_edit_mode','builder'),(2574,368,'_elementor_template_type','wp-page'),(2575,368,'_elementor_version','3.4.3'),(2576,368,'_wp_page_template','default'),(2577,368,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/2G5A1540-scaled.jpg\",\"id\":357,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2578,368,'_elementor_page_assets','a:0:{}'),(2579,368,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2581,369,'_elementor_edit_mode','builder'),(2582,369,'_elementor_template_type','wp-page'),(2583,369,'_elementor_version','3.4.3'),(2584,369,'_wp_page_template','default'),(2585,369,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2586,369,'_elementor_page_assets','a:0:{}'),(2587,369,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2591,370,'_edit_lock','1630786023:2'),(2592,370,'_edit_last','2'),(2593,371,'_wp_attached_file','2021/09/tweed-trouser-scaled.jpg'),(2594,371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2021/09/tweed-trouser-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"tweed-trouser-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tweed-trouser-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"tweed-trouser-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"tweed-trouser-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"tweed-trouser-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630167776\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"39\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"tweed-trouser.jpg\";}'),(2595,370,'_regular_price','245'),(2596,370,'total_sales','0'),(2597,370,'_tax_status','taxable'),(2598,370,'_tax_class',''),(2599,370,'_manage_stock','no'),(2600,370,'_backorders','no'),(2601,370,'_sold_individually','no'),(2602,370,'_virtual','no'),(2603,370,'_downloadable','no'),(2604,370,'_download_limit','-1'),(2605,370,'_download_expiry','-1'),(2606,370,'_stock',NULL),(2607,370,'_stock_status','instock'),(2608,370,'_wc_average_rating','0'),(2609,370,'_wc_review_count','0'),(2610,370,'_product_version','5.6.0'),(2611,370,'_price','245'),(2612,370,'_product_image_gallery','371,354'),(2613,370,'ekit_post_views_count','125'),(2614,370,'_thumbnail_id','371'),(2615,373,'_wp_attached_file','2021/08/bag.png'),(2616,373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:15:\"2021/08/bag.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"bag-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bag-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"bag-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"bag-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"bag-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"bag-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2617,269,'_product_image_gallery','222,223,224'),(2618,374,'_wp_attached_file','2021/09/suede-pocket-scaled.jpg'),(2619,374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:31:\"2021/09/suede-pocket-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"suede-pocket-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"suede-pocket-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"suede-pocket-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"suede-pocket-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"suede-pocket-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"suede-pocket-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"suede-pocket-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"suede-pocket-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"suede-pocket-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"suede-pocket-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"suede-pocket-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"suede-pocket-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630168504\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"suede-pocket.jpg\";}'),(2620,375,'_wp_attached_file','2021/09/Suede-bottom-scaled.jpg'),(2621,375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:31:\"2021/09/Suede-bottom-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Suede-bottom-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"Suede-bottom-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"Suede-bottom-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Suede-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Suede-bottom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630168598\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"Suede-bottom.jpg\";}'),(2622,377,'_wp_attached_file','2021/09/jacket.png'),(2623,377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:18:\"2021/09/jacket.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"jacket-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"jacket-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"jacket-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"jacket-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"jacket-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"jacket-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"jacket-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"jacket-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2625,379,'_edit_lock','1633015760:2'),(2626,379,'_edit_last','2'),(2627,380,'_wp_attached_file','2021/09/jacket-1.png'),(2628,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/jacket-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"jacket-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"jacket-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"jacket-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"jacket-1-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"jacket-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"jacket-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"jacket-1-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"jacket-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2629,381,'_wp_attached_file','2021/09/shirt.png'),(2630,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:17:\"2021/09/shirt.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"shirt-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"shirt-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"shirt-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"shirt-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"shirt-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"shirt-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"shirt-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"shirt-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2631,382,'_wp_attached_file','2021/09/red-monk.png'),(2632,382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/09/red-monk.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"red-monk-240x300.png\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"red-monk-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"red-monk-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"red-monk-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"red-monk-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"red-monk-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2633,383,'_wp_attached_file','2021/09/beits.png'),(2634,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:17:\"2021/09/beits.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"beits-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"beits-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"beits-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"beits-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"beits-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"beits-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"beits-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"beits-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2635,379,'_thumbnail_id','377'),(2636,379,'_regular_price','1499.00'),(2637,379,'total_sales','0'),(2638,379,'_tax_status','taxable'),(2639,379,'_tax_class',''),(2640,379,'_manage_stock','no'),(2641,379,'_backorders','no'),(2642,379,'_sold_individually','no'),(2643,379,'_virtual','no'),(2644,379,'_downloadable','no'),(2645,379,'_download_limit','-1'),(2646,379,'_download_expiry','-1'),(2647,379,'_stock',NULL),(2648,379,'_stock_status','instock'),(2649,379,'_wc_average_rating','0'),(2650,379,'_wc_review_count','0'),(2651,379,'_product_version','5.7.1'),(2652,379,'_price','1499.00'),(2653,379,'ekit_post_views_count','190'),(2654,386,'_field_1','Tabetha R Bennett'),(2655,386,'_field_5','15014107445'),(2656,386,'_field_6','09/22/2021'),(2657,386,'_field_7','Blue and Silver'),(2658,386,'_field_3','Please contact us at 501 410 7445'),(2659,386,'_form_id','1'),(2660,386,'_seq_num','2'),(2661,388,'_last_editor_used_jetpack','classic-editor'),(2662,388,'_edit_lock','1631239002:2'),(2663,388,'_edit_last','2'),(2664,388,'_thumbnail_id','270'),(2665,388,'_regular_price','175'),(2666,388,'total_sales','0'),(2667,388,'_tax_status','taxable'),(2668,388,'_tax_class',''),(2669,388,'_manage_stock','no'),(2670,388,'_backorders','no'),(2671,388,'_sold_individually','no'),(2672,388,'_virtual','no'),(2673,388,'_downloadable','no'),(2674,388,'_download_limit','-1'),(2675,388,'_download_expiry','-1'),(2676,388,'_stock',NULL),(2677,388,'_stock_status','instock'),(2678,388,'_wc_average_rating','0'),(2679,388,'_wc_review_count','0'),(2680,388,'_product_version','5.6.0'),(2681,388,'_price','175'),(2682,388,'_wc_gla_visibility','sync-and-show'),(2683,388,'ekit_post_views_count','77'),(2684,388,'_product_image_gallery','272,271'),(2685,389,'_elementor_edit_mode','builder'),(2686,389,'_elementor_template_type','wp-page'),(2687,389,'_elementor_version','3.4.3'),(2688,389,'_wp_page_template','default'),(2689,389,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2690,389,'_elementor_page_assets','a:0:{}'),(2691,389,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2693,390,'_elementor_edit_mode','builder'),(2694,390,'_elementor_template_type','wp-page'),(2695,390,'_elementor_version','3.4.3'),(2696,390,'_wp_page_template','default'),(2697,390,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2698,390,'_elementor_page_assets','a:0:{}'),(2699,390,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2701,391,'_elementor_edit_mode','builder'),(2702,391,'_elementor_template_type','wp-page'),(2703,391,'_elementor_version','3.4.3'),(2704,391,'_wp_page_template','default'),(2705,391,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2706,391,'_elementor_page_assets','a:0:{}'),(2707,391,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2710,392,'_elementor_edit_mode','builder'),(2711,392,'_elementor_template_type','wp-page'),(2712,392,'_elementor_version','3.4.3'),(2713,392,'_wp_page_template','default'),(2714,392,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2715,392,'_elementor_page_assets','a:0:{}'),(2716,392,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2717,393,'_elementor_edit_mode','builder'),(2718,393,'_elementor_template_type','wp-page'),(2719,393,'_elementor_version','3.4.3'),(2720,393,'_wp_page_template','default'),(2721,393,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2722,393,'_elementor_page_assets','a:0:{}'),(2723,393,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2724,394,'_elementor_edit_mode','builder'),(2725,394,'_elementor_template_type','wp-page'),(2726,394,'_elementor_version','3.4.3'),(2727,394,'_wp_page_template','default'),(2728,394,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2729,394,'_elementor_page_assets','a:0:{}'),(2730,394,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2733,395,'_elementor_edit_mode','builder'),(2734,395,'_elementor_template_type','wp-page'),(2735,395,'_elementor_version','3.4.3'),(2736,395,'_wp_page_template','default'),(2737,395,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2738,395,'_elementor_page_assets','a:0:{}'),(2739,395,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2741,396,'_elementor_edit_mode','builder'),(2742,396,'_elementor_template_type','wp-page'),(2743,396,'_elementor_version','3.4.3'),(2744,396,'_wp_page_template','default'),(2745,396,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2746,396,'_elementor_page_assets','a:0:{}'),(2747,396,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2749,397,'_elementor_edit_mode','builder'),(2750,397,'_elementor_template_type','wp-page'),(2751,397,'_elementor_version','3.4.3'),(2752,397,'_wp_page_template','default'),(2753,397,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(2754,397,'_elementor_page_assets','a:0:{}'),(2755,397,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2767,220,'_last_editor_used_jetpack','classic-editor'),(2768,399,'_wp_attached_file','2021/09/fall-21-promo.m4v'),(2769,399,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:50711609;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:38;s:16:\"length_formatted\";s:4:\"0:38\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1631671417;}'),(2780,401,'_last_editor_used_jetpack','classic-editor'),(2781,401,'_edit_lock','1631988929:2'),(2782,401,'_edit_last','2'),(2783,402,'_wp_attached_file','2021/09/DSC_0228.png'),(2784,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/DSC_0228.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0228-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0228-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0228-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0228-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0228-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0228-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0228-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0228-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2785,403,'_wp_attached_file','2021/09/DSC_0229.png'),(2786,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/DSC_0229.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0229-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0229-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0229-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0229-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0229-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0229-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0229-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0229-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2787,404,'_wp_attached_file','2021/09/DSC_0230.png'),(2788,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/DSC_0230.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0230-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0230-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0230-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0230-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0230-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0230-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0230-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0230-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2789,405,'_wp_attached_file','2021/09/DSC_0231.png'),(2790,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/DSC_0231.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0231-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0231-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0231-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0231-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0231-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0231-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0231-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0231-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2791,406,'_wp_attached_file','2021/09/DSC_0232.png'),(2792,406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:633;s:4:\"file\";s:20:\"2021/09/DSC_0232.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0232-300x297.png\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0232-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0232-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0232-600x593.png\";s:5:\"width\";i:600;s:6:\"height\";i:593;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0232-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0232-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0232-600x593.png\";s:5:\"width\";i:600;s:6:\"height\";i:593;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0232-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2793,407,'_wp_attached_file','2021/09/DSC_0233.png'),(2794,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/DSC_0233.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0233-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0233-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0233-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0233-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0233-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0233-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0233-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0233-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2795,401,'_thumbnail_id','406'),(2796,401,'_regular_price','115'),(2797,401,'total_sales','0'),(2798,401,'_tax_status','taxable'),(2799,401,'_tax_class',''),(2800,401,'_manage_stock','no'),(2801,401,'_backorders','no'),(2802,401,'_sold_individually','no'),(2803,401,'_virtual','no'),(2804,401,'_downloadable','no'),(2805,401,'_download_limit','-1'),(2806,401,'_download_expiry','-1'),(2807,401,'_stock',NULL),(2808,401,'_stock_status','instock'),(2809,401,'_wc_average_rating','0'),(2810,401,'_wc_review_count','0'),(2811,401,'_product_version','5.6.0'),(2812,401,'_price','115'),(2813,401,'_wc_gla_visibility','sync-and-show'),(2814,401,'_product_image_gallery','402,404,403,405,407'),(2815,401,'ekit_post_views_count','80'),(2816,262,'_last_editor_used_jetpack','classic-editor'),(2817,408,'_last_editor_used_jetpack','classic-editor'),(2818,408,'_edit_lock','1632239274:2'),(2819,408,'_edit_last','2'),(2820,408,'_thumbnail_id','265'),(2821,408,'total_sales','0'),(2822,408,'_tax_status','taxable'),(2823,408,'_tax_class',''),(2824,408,'_manage_stock','no'),(2825,408,'_backorders','no'),(2826,408,'_sold_individually','no'),(2827,408,'_virtual','no'),(2828,408,'_downloadable','no'),(2829,408,'_download_limit','-1'),(2830,408,'_download_expiry','-1'),(2831,408,'_stock',NULL),(2832,408,'_stock_status','instock'),(2833,408,'_wc_average_rating','0'),(2834,408,'_wc_review_count','0'),(2835,408,'_product_version','5.6.0'),(2836,408,'_wc_gla_visibility','sync-and-show'),(2837,408,'_product_image_gallery','124,122'),(2838,408,'ekit_post_views_count','89'),(2839,408,'_regular_price','40'),(2840,408,'_price','40'),(2843,410,'_last_editor_used_jetpack','classic-editor'),(2844,410,'_edit_lock','1632278110:2'),(2845,410,'_edit_last','2'),(2846,410,'_thumbnail_id','266'),(2847,410,'_regular_price','40'),(2848,410,'total_sales','0'),(2849,410,'_tax_status','taxable'),(2850,410,'_tax_class',''),(2851,410,'_manage_stock','no'),(2852,410,'_backorders','no'),(2853,410,'_sold_individually','no'),(2854,410,'_virtual','no'),(2855,410,'_downloadable','no'),(2856,410,'_download_limit','-1'),(2857,410,'_download_expiry','-1'),(2858,410,'_stock',NULL),(2859,410,'_stock_status','instock'),(2860,410,'_wc_average_rating','0'),(2861,410,'_wc_review_count','0'),(2862,410,'_product_version','5.6.1'),(2863,410,'_price','40'),(2864,410,'_wc_gla_visibility','sync-and-show'),(2865,410,'_product_image_gallery','123'),(2866,410,'ekit_post_views_count','92'),(2867,411,'_last_editor_used_jetpack','classic-editor'),(2868,411,'_edit_lock','1632277753:2'),(2869,411,'_edit_last','2'),(2870,411,'_thumbnail_id','267'),(2871,411,'_regular_price','40'),(2872,411,'total_sales','0'),(2873,411,'_tax_status','taxable'),(2874,411,'_tax_class',''),(2875,411,'_manage_stock','no'),(2876,411,'_backorders','no'),(2877,411,'_sold_individually','no'),(2878,411,'_virtual','no'),(2879,411,'_downloadable','no'),(2880,411,'_download_limit','-1'),(2881,411,'_download_expiry','-1'),(2882,411,'_stock',NULL),(2883,411,'_stock_status','instock'),(2884,411,'_wc_average_rating','0'),(2885,411,'_wc_review_count','0'),(2886,411,'_product_version','5.6.1'),(2887,411,'_price','40'),(2888,411,'_wc_gla_visibility','sync-and-show'),(2889,411,'_product_image_gallery','268'),(2890,411,'ekit_post_views_count','81'),(2891,412,'_last_editor_used_jetpack','classic-editor'),(2892,412,'_edit_lock','1632326587:2'),(2893,412,'_edit_last','2'),(2894,412,'_thumbnail_id','263'),(2895,412,'_regular_price','40'),(2896,412,'total_sales','0'),(2897,412,'_tax_status','taxable'),(2898,412,'_tax_class',''),(2899,412,'_manage_stock','no'),(2900,412,'_backorders','no'),(2901,412,'_sold_individually','no'),(2902,412,'_virtual','no'),(2903,412,'_downloadable','no'),(2904,412,'_download_limit','-1'),(2905,412,'_download_expiry','-1'),(2906,412,'_stock',NULL),(2907,412,'_stock_status','instock'),(2908,412,'_wc_average_rating','0'),(2909,412,'_wc_review_count','0'),(2910,412,'_product_version','5.7.0'),(2911,412,'_price','40'),(2912,412,'_wc_gla_visibility','sync-and-show'),(2913,412,'ekit_post_views_count','91'),(2914,262,'_wc_gla_visibility','sync-and-show'),(2915,379,'_last_editor_used_jetpack','classic-editor'),(2916,420,'_wp_attached_file','2021/09/blake1.png'),(2917,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:640;s:4:\"file\";s:18:\"2021/09/blake1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"blake1-200x300.png\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"blake1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"blake1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"blake1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"blake1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"blake1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2918,421,'_wp_attached_file','2021/09/DSC_0054.png'),(2919,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:20:\"2021/09/DSC_0054.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0054-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0054-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_0054-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"DSC_0054-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0054-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"DSC_0054-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"DSC_0054-600x399.png\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0054-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2920,412,'_product_image_gallery','420,421'),(2921,379,'_wc_gla_visibility','sync-and-show'),(2922,1,'ekit_post_views_count','4'),(2923,56,'_last_editor_used_jetpack','classic-editor'),(2926,426,'_elementor_edit_mode','builder'),(2927,426,'_elementor_template_type','kit'),(2928,426,'_wp_page_template','default'),(2929,426,'_elementor_page_settings','a:13:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#980909\";s:9:\"site_name\";s:29:\"Michael Blake Men's Wear\";s:16:\"site_description\";s:41:\"Custom clothing in the way that suits you\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(2930,426,'_elementor_data','[]'),(2931,426,'_elementor_page_assets','a:0:{}'),(2932,426,'_elementor_version','3.3.1'),(2940,5,'_elementor_css','a:7:{s:4:\"time\";i:1633376224;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:1170:\".elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:\"Roboto\";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:\"Roboto Slab\";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:\"Roboto\";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:\"Roboto\";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 button,.elementor-kit-5 input[type=\"button\"],.elementor-kit-5 input[type=\"submit\"],.elementor-kit-5 .elementor-button{color:#FFFFFF;background-color:#980909;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.elementor-widget:not(:last-child){margin-bottom:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-right:0px;padding-left:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}}\";}'),(2944,430,'_wp_page_template','default'),(2945,430,'_elementor_edit_mode','builder'),(2946,430,'_elementor_template_type','wp-post'),(2947,430,'_elementor_version','3.4.2'),(2948,430,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#7A7A7A\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2949,430,'_elementor_page_assets','a:0:{}'),(2950,430,'_elementor_css','a:7:{s:4:\"time\";i:1633376228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8132:\".elementor-28 .elementor-element.elementor-element-7ad8a3e:not(.elementor-motion-effects-element-type-background), .elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-28 .elementor-element.elementor-element-7ad8a3e{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container, .elementor-28 .elementor-element.elementor-element-75a3794 .hfe-caption-width figcaption{text-align:center;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container .hfe-site-logo-img{border-style:none;}.elementor-28 .elementor-element.elementor-element-75a3794 .widget-image-caption{margin-top:0px;margin-bottom:0px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__toggle{margin:0 auto;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item{padding-left:10px;padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-left:calc( 10px + 20px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 40px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 60px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 80px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-size:14px;font-weight:700;text-transform:uppercase;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item.highlighted,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:focus{color:#FFFFFF;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-ancestor a.hfe-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-28 .elementor-element.elementor-element-ef0f582 ul.sub-menu{width:220px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu li.menu-item:not(:last-child), \n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-28 .elementor-element.elementor-element-ef0f582 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container{min-height:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-submit{min-width:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input{padding-left:calc(40px / 5);padding-right:calc(40px / 5);}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input::placeholder{color:#7A7A7A6B;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{background-color:#ededed;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input{background-color:transparent;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container ,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-style:none;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-width:1px 1px 1px 1px;border-radius:3px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button i:before{font-size:20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear{color:#7a7a7a;}.elementor-28 .elementor-element.elementor-element-f62259a > .elementor-widget-container{padding:20px 0px 0px 0px;}.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-menu-cart__toggle .elementor-button,.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count:after, .elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count{border-width:1px 1px 1px 1px;}.elementor-28 .elementor-element.elementor-element-af1bff2 > .elementor-widget-container{padding:30px 0px 0px 0px;}@media(min-width:768px){.elementor-28 .elementor-element.elementor-element-5b6ec59{width:25.357%;}.elementor-28 .elementor-element.elementor-element-88ddc7e{width:59.286%;}.elementor-28 .elementor-element.elementor-element-ce570ca{width:9.531%;}.elementor-28 .elementor-element.elementor-element-9c45938{width:5.743%;}}\";}'),(2951,431,'_wp_page_template','default'),(2952,431,'_elementor_edit_mode','builder'),(2953,431,'_elementor_template_type','wp-post'),(2954,431,'_elementor_version','3.4.2'),(2955,431,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#7A7A7A\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2956,431,'_elementor_page_assets','a:0:{}'),(2957,431,'_elementor_css','a:7:{s:4:\"time\";i:1633376228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8132:\".elementor-28 .elementor-element.elementor-element-7ad8a3e:not(.elementor-motion-effects-element-type-background), .elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-28 .elementor-element.elementor-element-7ad8a3e{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container, .elementor-28 .elementor-element.elementor-element-75a3794 .hfe-caption-width figcaption{text-align:center;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container .hfe-site-logo-img{border-style:none;}.elementor-28 .elementor-element.elementor-element-75a3794 .widget-image-caption{margin-top:0px;margin-bottom:0px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__toggle{margin:0 auto;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item{padding-left:10px;padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-left:calc( 10px + 20px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 40px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 60px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 80px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-size:14px;font-weight:700;text-transform:uppercase;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item.highlighted,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:focus{color:#FFFFFF;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-ancestor a.hfe-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-28 .elementor-element.elementor-element-ef0f582 ul.sub-menu{width:220px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu li.menu-item:not(:last-child), \n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-28 .elementor-element.elementor-element-ef0f582 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container{min-height:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-submit{min-width:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input{padding-left:calc(40px / 5);padding-right:calc(40px / 5);}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input::placeholder{color:#7A7A7A6B;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{background-color:#ededed;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input{background-color:transparent;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container ,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-style:none;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-width:1px 1px 1px 1px;border-radius:3px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button i:before{font-size:20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear{color:#7a7a7a;}.elementor-28 .elementor-element.elementor-element-f62259a > .elementor-widget-container{padding:20px 0px 0px 0px;}.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-menu-cart__toggle .elementor-button,.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count:after, .elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count{border-width:1px 1px 1px 1px;}.elementor-28 .elementor-element.elementor-element-af1bff2 > .elementor-widget-container{padding:30px 0px 0px 0px;}@media(min-width:768px){.elementor-28 .elementor-element.elementor-element-5b6ec59{width:25.357%;}.elementor-28 .elementor-element.elementor-element-88ddc7e{width:59.286%;}.elementor-28 .elementor-element.elementor-element-ce570ca{width:9.531%;}.elementor-28 .elementor-element.elementor-element-9c45938{width:5.743%;}}\";}'),(2958,432,'_wp_page_template','default'),(2959,432,'_elementor_edit_mode','builder'),(2960,432,'_elementor_template_type','wp-post'),(2961,432,'_elementor_version','3.4.2'),(2962,432,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#7A7A7A\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2963,432,'_elementor_page_assets','a:0:{}'),(2964,432,'_elementor_css','a:7:{s:4:\"time\";i:1633376228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8132:\".elementor-28 .elementor-element.elementor-element-7ad8a3e:not(.elementor-motion-effects-element-type-background), .elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-28 .elementor-element.elementor-element-7ad8a3e{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container, .elementor-28 .elementor-element.elementor-element-75a3794 .hfe-caption-width figcaption{text-align:center;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container .hfe-site-logo-img{border-style:none;}.elementor-28 .elementor-element.elementor-element-75a3794 .widget-image-caption{margin-top:0px;margin-bottom:0px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__toggle{margin:0 auto;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item{padding-left:10px;padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-left:calc( 10px + 20px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 40px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 60px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 80px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-size:14px;font-weight:700;text-transform:uppercase;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item.highlighted,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:focus{color:#FFFFFF;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-ancestor a.hfe-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-28 .elementor-element.elementor-element-ef0f582 ul.sub-menu{width:220px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu li.menu-item:not(:last-child), \n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-28 .elementor-element.elementor-element-ef0f582 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container{min-height:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-submit{min-width:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input{padding-left:calc(40px / 5);padding-right:calc(40px / 5);}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input::placeholder{color:#7A7A7A6B;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{background-color:#ededed;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input{background-color:transparent;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container ,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-style:none;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-width:1px 1px 1px 1px;border-radius:3px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button i:before{font-size:20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear{color:#7a7a7a;}.elementor-28 .elementor-element.elementor-element-f62259a > .elementor-widget-container{padding:20px 0px 0px 0px;}.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-menu-cart__toggle .elementor-button,.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count:after, .elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count{border-width:1px 1px 1px 1px;}.elementor-28 .elementor-element.elementor-element-af1bff2 > .elementor-widget-container{padding:30px 0px 0px 0px;}@media(min-width:768px){.elementor-28 .elementor-element.elementor-element-5b6ec59{width:25.357%;}.elementor-28 .elementor-element.elementor-element-88ddc7e{width:59.286%;}.elementor-28 .elementor-element.elementor-element-ce570ca{width:9.531%;}.elementor-28 .elementor-element.elementor-element-9c45938{width:5.743%;}}\";}'),(2966,433,'_wp_page_template','default'),(2967,433,'_elementor_edit_mode','builder'),(2968,433,'_elementor_template_type','wp-post'),(2969,433,'_elementor_version','3.3.1'),(2970,433,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(2971,433,'_elementor_page_assets','a:0:{}'),(2972,433,'_elementor_css','a:7:{s:4:\"time\";i:1633376228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";i:2;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:6950:\".elementor-86 .elementor-element.elementor-element-17bd8f5:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-17bd8f5{border-style:solid;border-width:0px 0px 1px 0px;border-color:#888888;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__toggle{margin:0 auto;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-weight:700;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item.highlighted,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:focus{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-ancestor a.hfe-menu-item{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-86 .elementor-element.elementor-element-b58c10e ul.sub-menu{width:220px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu li.menu-item:not(:last-child), \n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-86 .elementor-element.elementor-element-f8c52d2:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-f8c52d2{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a{font-family:\"Montserrat\", Sans-serif;font-weight:400;}.elementor-86 .elementor-element.elementor-element-525b763 > .elementor-widget-container{padding:5px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-dfb2363{text-align:right;}.elementor-86 .elementor-element.elementor-element-dfb2363 .elementor-heading-title{color:#FFFFFF;font-family:\"Montserrat\", Sans-serif;font-size:16px;font-weight:300;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-dfb2363 > .elementor-widget-container{padding:10px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media{text-align:left;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a svg path{stroke:#FFFFFF;fill:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a:hover{background-color:#3b5998;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li > a{text-align:center;text-decoration:none;border-radius:050% 050% 050% 050%;width:30px;height:30px;line-height:28px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li{display:inline-block;margin:0px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 > .elementor-widget-container{padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-86 .elementor-element.elementor-element-225b40c{width:63.681%;}.elementor-86 .elementor-element.elementor-element-dceb8f8{width:27.008%;}.elementor-86 .elementor-element.elementor-element-7b875db{width:8.773%;}}\";}'),(2973,434,'_wp_page_template','default'),(2974,434,'_elementor_edit_mode','builder'),(2975,434,'_elementor_template_type','wp-post'),(2976,434,'_elementor_version','3.3.1'),(2977,434,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(2978,434,'_elementor_page_assets','a:0:{}'),(2979,434,'_elementor_css','a:7:{s:4:\"time\";i:1633376228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";i:2;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:6950:\".elementor-86 .elementor-element.elementor-element-17bd8f5:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-17bd8f5{border-style:solid;border-width:0px 0px 1px 0px;border-color:#888888;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__toggle{margin:0 auto;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-weight:700;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item.highlighted,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:focus{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-ancestor a.hfe-menu-item{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-86 .elementor-element.elementor-element-b58c10e ul.sub-menu{width:220px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu li.menu-item:not(:last-child), \n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-86 .elementor-element.elementor-element-f8c52d2:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-f8c52d2{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a{font-family:\"Montserrat\", Sans-serif;font-weight:400;}.elementor-86 .elementor-element.elementor-element-525b763 > .elementor-widget-container{padding:5px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-dfb2363{text-align:right;}.elementor-86 .elementor-element.elementor-element-dfb2363 .elementor-heading-title{color:#FFFFFF;font-family:\"Montserrat\", Sans-serif;font-size:16px;font-weight:300;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-dfb2363 > .elementor-widget-container{padding:10px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media{text-align:left;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a svg path{stroke:#FFFFFF;fill:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a:hover{background-color:#3b5998;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li > a{text-align:center;text-decoration:none;border-radius:050% 050% 050% 050%;width:30px;height:30px;line-height:28px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li{display:inline-block;margin:0px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 > .elementor-widget-container{padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-86 .elementor-element.elementor-element-225b40c{width:63.681%;}.elementor-86 .elementor-element.elementor-element-dceb8f8{width:27.008%;}.elementor-86 .elementor-element.elementor-element-7b875db{width:8.773%;}}\";}'),(2980,435,'_wp_page_template','default'),(2981,435,'_elementor_edit_mode','builder'),(2982,435,'_elementor_template_type','wp-post'),(2983,435,'_elementor_version','3.3.1'),(2984,435,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"color_menu_item\":\"#C82B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(2985,435,'_elementor_page_assets','a:0:{}'),(2986,435,'_elementor_css','a:7:{s:4:\"time\";i:1633376228;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";i:2;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:6950:\".elementor-86 .elementor-element.elementor-element-17bd8f5:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-17bd8f5{border-style:solid;border-width:0px 0px 1px 0px;border-color:#888888;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__toggle{margin:0 auto;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-weight:700;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item.highlighted,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:focus{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-ancestor a.hfe-menu-item{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-86 .elementor-element.elementor-element-b58c10e ul.sub-menu{width:220px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu li.menu-item:not(:last-child), \n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-86 .elementor-element.elementor-element-f8c52d2:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-f8c52d2{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a{font-family:\"Montserrat\", Sans-serif;font-weight:400;}.elementor-86 .elementor-element.elementor-element-525b763 > .elementor-widget-container{padding:5px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-dfb2363{text-align:right;}.elementor-86 .elementor-element.elementor-element-dfb2363 .elementor-heading-title{color:#FFFFFF;font-family:\"Montserrat\", Sans-serif;font-size:16px;font-weight:300;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-dfb2363 > .elementor-widget-container{padding:10px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media{text-align:left;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a svg path{stroke:#FFFFFF;fill:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a:hover{background-color:#3b5998;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li > a{text-align:center;text-decoration:none;border-radius:050% 050% 050% 050%;width:30px;height:30px;line-height:28px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li{display:inline-block;margin:0px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 > .elementor-widget-container{padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-86 .elementor-element.elementor-element-225b40c{width:63.681%;}.elementor-86 .elementor-element.elementor-element-dceb8f8{width:27.008%;}.elementor-86 .elementor-element.elementor-element-7b875db{width:8.773%;}}\";}'),(2988,436,'_wp_page_template','default'),(2989,436,'_elementor_edit_mode','builder'),(2990,436,'_elementor_template_type','wp-post'),(2991,436,'_elementor_version','3.4.4'),(2992,436,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"color_menu_item\":\"#C82B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(2993,436,'_elementor_page_assets','a:0:{}'),(2994,437,'_wp_page_template','default'),(2995,437,'_elementor_edit_mode','builder'),(2996,437,'_elementor_template_type','wp-post'),(2997,437,'_elementor_version','3.4.4'),(2998,437,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"color_menu_item\":\"#C82B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(2999,437,'_elementor_page_assets','a:0:{}'),(3000,438,'_wp_page_template','default'),(3001,438,'_elementor_edit_mode','builder'),(3002,438,'_elementor_template_type','wp-post'),(3003,438,'_elementor_version','3.4.4'),(3004,438,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"color_menu_item\":\"#C82B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_socialmedai_list_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(3005,438,'_elementor_page_assets','a:0:{}'),(3007,439,'_wp_page_template','default'),(3008,439,'_elementor_edit_mode','builder'),(3009,439,'_elementor_template_type','wp-post'),(3010,439,'_elementor_version','3.4.4'),(3011,439,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"color_menu_item\":\"#C82B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_socialmedai_list_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(3012,439,'_elementor_page_assets','a:0:{}'),(3013,440,'_wp_page_template','default'),(3014,440,'_elementor_edit_mode','builder'),(3015,440,'_elementor_template_type','wp-post'),(3016,440,'_elementor_version','3.4.4'),(3017,440,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\",\"color_menu_item\":\"#C82B2B\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_socialmedai_list_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(3018,440,'_elementor_page_assets','a:0:{}'),(3019,441,'_wp_page_template','default'),(3020,441,'_elementor_edit_mode','builder'),(3021,441,'_elementor_template_type','wp-post'),(3022,441,'_elementor_version','3.4.4'),(3023,441,'_elementor_data','[{\"id\":\"17bd8f5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#888888\"},\"elements\":[{\"id\":\"936ac6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b58c10e\",\"elType\":\"widget\",\"settings\":{\"menu\":\"footer-menu\",\"dropdown\":\"mobile\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#E1E1E1\",\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f8c52d2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"225b40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6809999999999973852027324028313159942626953125},\"elements\":[{\"id\":\"525b763\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"Copyright \\u00a9 [hfe_current_year] [hfe_site_title] | Website built by <a href=\\\"https:\\/\\/esselwebdesign.com\\\">Essel Web Design<\\/a>\",\"title_color\":\"#FFFFFF\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_family\":\"Montserrat\",\"caption_typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"copyright\"}],\"isInner\":false},{\"id\":\"dceb8f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":27.007999999999999118927007657475769519805908203125},\"elements\":[{\"id\":\"dfb2363\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us:\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"7b875db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.772999999999999687361196265555918216705322265625},\"elements\":[{\"id\":\"a431ae8\",\"elType\":\"widget\",\"settings\":{\"ekit_socialmedai_list_align\":\"left\",\"ekit_socialmedia_add_icons\":[{\"ekit_socialmedia_icons\":{\"value\":\"icon icon-facebook-2\",\"library\":\"ekiticons\"},\"ekit_socialmedia_label\":\"Facebook\",\"_id\":\"bab46b8\",\"ekit_socialmedia_link\":{\"url\":\"https:\\/\\/www.facebook.com\\/MichaelBlakeMenswearLLC\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_socialmedia_icon_color\":\"#FFFFFF\"}],\"ekit_socialmedai_list_border_radius\":{\"unit\":\"%\",\"top\":\"050\",\"right\":\"050\",\"bottom\":\"050\",\"left\":\"050\",\"isLinked\":true},\"ekit_socialmedai_list_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_socialmedai_list_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"elementskit-social-media\"}],\"isInner\":false}],\"isInner\":false}]'),(3024,441,'_elementor_page_assets','a:0:{}'),(3025,86,'_elementor_controls_usage','a:6:{s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:8:\"dropdown\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:7:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:15:\"color_menu_item\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:9:\"copyright\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:9:\"shortcode\";i:1;s:11:\"title_color\";i:1;s:29:\"caption_typography_typography\";i:1;s:30:\"caption_typography_font_family\";i:1;s:30:\"caption_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:24:\"elementskit-social-media\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:36:\"ekit_socialmedia_section_tab_content\";a:3:{s:27:\"ekit_socialmedai_list_align\";i:1;s:26:\"ekit_socialmedia_add_icons\";i:1;s:34:\"ekit_socialmedai_list_align_mobile\";i:1;}}s:5:\"style\";a:1:{s:34:\"ekit_socialmedia_section_tab_style\";a:2:{s:35:\"ekit_socialmedai_list_border_radius\";i:1;s:28:\"ekit_socialmedai_list_margin\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(3026,442,'_wp_page_template','default'),(3027,442,'_elementor_edit_mode','builder'),(3028,442,'_elementor_template_type','wp-post'),(3029,442,'_elementor_version','3.4.4'),(3030,442,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#7A7A7A\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3031,442,'_elementor_page_assets','a:0:{}'),(3032,443,'_wp_page_template','default'),(3033,443,'_elementor_edit_mode','builder'),(3034,443,'_elementor_template_type','wp-post'),(3035,443,'_elementor_version','3.4.4'),(3036,443,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#7A7A7A\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3037,443,'_elementor_page_assets','a:0:{}'),(3038,444,'_wp_page_template','default'),(3039,444,'_elementor_edit_mode','builder'),(3040,444,'_elementor_template_type','wp-post'),(3041,444,'_elementor_version','3.4.4'),(3042,444,'_elementor_data','[{\"id\":\"7ad8a3e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000\",\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"b7afa7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2045d84\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"layout\":\"full_width\"},\"elements\":[{\"id\":\"5b6ec59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":25.356999999999999317878973670303821563720703125},\"elements\":[{\"id\":\"75a3794\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeLogo.png\",\"id\":31,\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"88ddc7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":59.28600000000000136424205265939235687255859375},\"elements\":[{\"id\":\"ef0f582\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"menu_typography_font_weight\":\"700\",\"menu_typography_text_transform\":\"uppercase\",\"color_menu_item_hover\":\"#C82B2B\",\"color_menu_item_active\":\"#E1E1E1\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"color_menu_item\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"navigation-menu\"},{\"id\":\"6d8caf7\",\"elType\":\"widget\",\"settings\":{\"html\":\"<!-- Begin TVSquared Page Visits Tracking Code -->\\n<script type=\\\"text\\/javascript\\\">\\n var _tvq = window._tvq = window._tvq || [];\\n (function() {\\n var u = ((\\\"https:\\\" == document.location.protocol) ?\\n \\\"https:\\/\\/collector-16198.us.tvsquared.com\\/\\\"\\n :\\n \\\"http:\\/\\/collector-16198.us.tvsquared.com\\/\\\");\\n _tvq.push([\'setSiteId\', \\\"TV-8136810918-1\\\"]);\\n _tvq.push([\'setTrackerUrl\', u + \'tv2track.php\']);\\n _tvq.push([function() {\\n this.deleteCustomVariable(5, \'page\')\\n }]);\\n _tvq.push([\'trackPageView\']);\\n var d = document,\\n g = d.createElement(\'script\'),\\n s = d.getElementsByTagName(\'script\')[0];\\n g.type = \'text\\/javascript\';\\n g.defer = true;\\n g.async = true;\\n g.src = u + \'tv2track.js\';\\n s.parentNode.insertBefore(g, s);\\n })();\\n<\\/script>\\n<!-- End TVSquared Tracking Code -->\\n\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true},{\"id\":\"ce570ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":9.5310000000000005826450433232821524143218994140625},\"elements\":[{\"id\":\"f62259a\",\"elType\":\"widget\",\"settings\":{\"placeholder\":\"Search\",\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true},{\"id\":\"9c45938\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":5.7430000000000003268496584496460855007171630859375},\"elements\":[{\"id\":\"af1bff2\",\"elType\":\"widget\",\"settings\":{\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"hfe-cart\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3043,444,'_elementor_page_assets','a:0:{}'),(3044,28,'_elementor_controls_usage','a:7:{s:9:\"site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"section_site_image\";a:2:{s:18:\"site_logo_fallback\";i:1;s:12:\"custom_image\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_menu\";a:1:{s:4:\"menu\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:9:{s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:15:\"color_menu_item\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}s:17:\"hfe-search-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:2:{s:11:\"placeholder\";i:1;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:8:\"hfe-cart\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:12:\"align_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:6:\"layout\";i:2;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(3045,28,'_elementor_css','a:7:{s:4:\"time\";i:1633377609;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8132:\".elementor-28 .elementor-element.elementor-element-7ad8a3e:not(.elementor-motion-effects-element-type-background), .elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-28 .elementor-element.elementor-element-7ad8a3e{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-28 .elementor-element.elementor-element-7ad8a3e > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container, .elementor-28 .elementor-element.elementor-element-75a3794 .hfe-caption-width figcaption{text-align:center;}.elementor-28 .elementor-element.elementor-element-75a3794 .hfe-site-logo-container .hfe-site-logo-img{border-style:none;}.elementor-28 .elementor-element.elementor-element-75a3794 .widget-image-caption{margin-top:0px;margin-bottom:0px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__toggle{margin:0 auto;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item{padding-left:10px;padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-left:calc( 10px + 20px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 40px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 60px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 10px + 80px );padding-right:10px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-size:14px;font-weight:700;text-transform:uppercase;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item, .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item{color:#7A7A7A;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item.highlighted,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item a.hfe-menu-item:focus{color:#C82B2B;}.elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 .menu-item.current-menu-ancestor a.hfe-menu-item{color:#E1E1E1;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-28 .elementor-element.elementor-element-ef0f582 ul.sub-menu{width:220px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-28 .elementor-element.elementor-element-ef0f582 .sub-menu li.menu-item:not(:last-child), \n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-28 .elementor-element.elementor-element-ef0f582 nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-28 .elementor-element.elementor-element-ef0f582 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container{min-height:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-submit{min-width:40px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input{padding-left:calc(40px / 5);padding-right:calc(40px / 5);}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input::placeholder{color:#7A7A7A6B;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__input, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{background-color:#ededed;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input{background-color:transparent;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container ,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-style:none;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container, .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle .hfe-search-form__input,.elementor-28 .elementor-element.elementor-element-f62259a .hfe-input-focus .hfe-search-icon-toggle .hfe-search-form__input{border-width:1px 1px 1px 1px;border-radius:3px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear i:before,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button i:before{font-size:20px;}.elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear-with-button,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-form__container button#clear,\n .elementor-28 .elementor-element.elementor-element-f62259a .hfe-search-icon-toggle button#clear{color:#7a7a7a;}.elementor-28 .elementor-element.elementor-element-f62259a > .elementor-widget-container{padding:20px 0px 0px 0px;}.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-menu-cart__toggle .elementor-button,.elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count:after, .elementor-28 .elementor-element.elementor-element-af1bff2 .hfe-cart-menu-wrap-default .hfe-cart-count{border-width:1px 1px 1px 1px;}.elementor-28 .elementor-element.elementor-element-af1bff2 > .elementor-widget-container{padding:30px 0px 0px 0px;}@media(min-width:768px){.elementor-28 .elementor-element.elementor-element-5b6ec59{width:25.357%;}.elementor-28 .elementor-element.elementor-element-88ddc7e{width:59.286%;}.elementor-28 .elementor-element.elementor-element-ce570ca{width:9.531%;}.elementor-28 .elementor-element.elementor-element-9c45938{width:5.743%;}}\";}'),(3046,86,'_elementor_css','a:7:{s:4:\"time\";i:1633377609;s:5:\"fonts\";a:1:{i:0;s:10:\"Montserrat\";}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";i:2;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:7341:\".elementor-86 .elementor-element.elementor-element-17bd8f5:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-17bd8f5{border-style:solid;border-width:0px 0px 1px 0px;border-color:#888888;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-17bd8f5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__toggle{margin:0 auto;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item{padding-left:15px;padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-left:calc( 15px + 20px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 40px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 60px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .hfe-nav-menu__layout-vertical .menu-item ul ul ul ul a.hfe-sub-menu-item{padding-left:calc( 15px + 80px );padding-right:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e a.hfe-sub-menu-item{font-family:\"Montserrat\", Sans-serif;font-weight:700;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item, .elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item:hover,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item.highlighted,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item a.hfe-menu-item:focus{color:#C82B2B;}.elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e .menu-item.current-menu-ancestor a.hfe-menu-item{color:#E1E1E1;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown .menu-item a.hfe-sub-menu-item{background-color:#fff;}.elementor-86 .elementor-element.elementor-element-b58c10e ul.sub-menu{width:220px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li a.hfe-sub-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-menu-item,\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li a.hfe-sub-menu-item{padding-top:15px;padding-bottom:15px;}.elementor-86 .elementor-element.elementor-element-b58c10e .sub-menu li.menu-item:not(:last-child), \n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown li.menu-item:not(:last-child),\n .elementor-86 .elementor-element.elementor-element-b58c10e nav.hfe-dropdown-expandible li.menu-item:not(:last-child){border-bottom-style:solid;border-bottom-color:#c4c4c4;border-bottom-width:1px;}.elementor-86 .elementor-element.elementor-element-f8c52d2:not(.elementor-motion-effects-element-type-background), .elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-86 .elementor-element.elementor-element-f8c52d2{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-86 .elementor-element.elementor-element-f8c52d2 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper, .elementor-86 .elementor-element.elementor-element-525b763 .hfe-copyright-wrapper a{font-family:\"Montserrat\", Sans-serif;font-weight:400;}.elementor-86 .elementor-element.elementor-element-525b763 > .elementor-widget-container{padding:5px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-dfb2363{text-align:right;}.elementor-86 .elementor-element.elementor-element-dfb2363 .elementor-heading-title{color:#FFFFFF;font-family:\"Montserrat\", Sans-serif;font-size:16px;font-weight:300;text-transform:uppercase;}.elementor-86 .elementor-element.elementor-element-dfb2363 > .elementor-widget-container{padding:10px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media{text-align:left;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a{color:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a svg path{stroke:#FFFFFF;fill:#FFFFFF;}.elementor-86 .elementor-element.elementor-element-a431ae8 .elementor-repeater-item-bab46b8 > a:hover{background-color:#3b5998;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li > a{text-align:center;text-decoration:none;border-radius:050% 050% 050% 050%;width:30px;height:30px;line-height:28px;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media > li{display:inline-block;margin:0px 0px 0px 0px;}.elementor-86 .elementor-element.elementor-element-a431ae8 > .elementor-widget-container{padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-86 .elementor-element.elementor-element-dfb2363{text-align:center;}.elementor-86 .elementor-element.elementor-element-a431ae8 .ekit_social_media{text-align:center;}}@media(min-width:768px){.elementor-86 .elementor-element.elementor-element-225b40c{width:63.681%;}.elementor-86 .elementor-element.elementor-element-dceb8f8{width:27.008%;}.elementor-86 .elementor-element.elementor-element-7b875db{width:8.773%;}}\";}'),(3047,195,'_elementor_css','a:7:{s:4:\"time\";i:1633377715;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:1608:\".elementor-195 .elementor-element.elementor-element-36dda3d5 > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:center;align-items:center;}.elementor-195 .elementor-element.elementor-element-36dda3d5:not(.elementor-motion-effects-element-type-background), .elementor-195 .elementor-element.elementor-element-36dda3d5 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-195 .elementor-element.elementor-element-36dda3d5{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:100px 0px 100px 0px;}.elementor-195 .elementor-element.elementor-element-36dda3d5 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-195 .elementor-element.elementor-element-6b61c1bb > .elementor-element-populated{padding:0px 0px 0px 35px;}.elementor-195 .elementor-element.elementor-element-6b6dbd55{text-align:center;}.elementor-195 .elementor-element.elementor-element-6b6dbd55 .elementor-heading-title{color:#ffffff;font-size:45px;}.elementor-195 .elementor-element.elementor-element-6b76c29{text-align:center;color:#686868;font-size:16px;font-weight:300;line-height:1.8em;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-195 .elementor-element.elementor-element-36dda3d5{padding:100px 25px 100px 25px;}}@media(max-width:767px){.elementor-195 .elementor-element.elementor-element-36dda3d5{padding:50px 20px 50px 20px;}.elementor-195 .elementor-element.elementor-element-6b61c1bb > .elementor-element-populated{padding:25px 0px 0px 0px;}}\";}'),(3048,117,'_elementor_css','a:7:{s:4:\"time\";i:1633377726;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:110:\".elementor-117 .elementor-element.elementor-element-4c18930 .gallery-item .gallery-caption{text-align:center;}\";}'),(3049,97,'_elementor_css','a:7:{s:4:\"time\";i:1633377737;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:644:\".elementor-97 .elementor-element.elementor-element-7ef8647 > .elementor-element-populated{padding:15px 15px 15px 15px;}.elementor-97 .elementor-element.elementor-element-c09d40f iframe{height:692px;}.elementor-97 .elementor-element.elementor-element-c09d40f > .elementor-widget-container{padding:015px 0px 0px 0px;}.elementor-97 .elementor-element.elementor-element-c172d35 > .elementor-element-populated{padding:15px 15px 15px 15px;}.elementor-97 .elementor-element.elementor-element-b0abe99{text-align:center;}.elementor-97 .elementor-element.elementor-element-b0abe99 .elementor-heading-title{color:#000000;}:root{--page-title-display:none;}\";}'),(3050,76,'_elementor_css','a:7:{s:4:\"time\";i:1633377759;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:968:\".elementor-76 .elementor-element.elementor-element-b9b5d3f:not(.elementor-motion-effects-element-type-background), .elementor-76 .elementor-element.elementor-element-b9b5d3f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeTuxedoRental.jpg\");background-position:top right;background-size:cover;}.elementor-76 .elementor-element.elementor-element-b9b5d3f{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-76 .elementor-element.elementor-element-b9b5d3f > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-76 .elementor-element.elementor-element-709ee8a .ekit_ninjaForms_container .nf-form-title h3, .elementor-76 .elementor-element.elementor-element-709ee8a .ekit_ninjaForms_container-heading{text-align:center;}:root{--page-title-display:none;}\";}'),(3051,445,'_field_1','Terry Allen'),(3052,445,'_field_5','5014420543'),(3053,445,'_field_6','11/13/2021'),(3054,445,'_field_7','Burgundy and Blush (light pale pink)'),(3055,445,'_field_3','I\'m the father of the Bride. Would like something sleek and traditional with a vest and coat. I work in Maumelle if I need to come by and get my Measurements taken. Thanks!'),(3056,445,'_form_id','1'),(3057,445,'_seq_num','3'),(3058,446,'_field_1','Kashaun Robinson '),(3059,446,'_field_5','5016136306'),(3060,446,'_field_6','11/13/2021'),(3061,446,'_field_7','Red'),(3062,446,'_field_3','Will you have a all red fitted suit with a black turtle neck? Also we’re wondering if you have those red Skokie shoes available?'),(3063,446,'_form_id','1'),(3064,446,'_seq_num','4'),(3065,449,'_wp_attached_file','2021/11/blue-sweater-scaled.jpg'),(3066,449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:31:\"2021/11/blue-sweater-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"blue-sweater-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"blue-sweater-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"blue-sweater-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"blue-sweater-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"blue-sweater-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"blue-sweater-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"mailpoet_newsletter_max\";a:4:{s:4:\"file\";s:25:\"blue-sweater-1320x880.jpg\";s:5:\"width\";i:1320;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"blue-sweater-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"blue-sweater-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"blue-sweater-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"blue-sweater-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"blue-sweater-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"blue-sweater-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630167670\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"blue-sweater.jpg\";}'),(3067,450,'_wp_attached_file','2021/11/red-t-neck.jpg'),(3068,451,'_wp_attached_file','2021/11/tweed-trouser-scaled.jpg'),(3069,451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2021/11/tweed-trouser-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"tweed-trouser-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"tweed-trouser-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"tweed-trouser-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"tweed-trouser-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1630167776\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"39\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"tweed-trouser.jpg\";}'),(3070,452,'_wp_attached_file','2021/11/red-t-neck-1.jpg'),(3072,371,'_wp_old_slug','tweed-trouser'),(3074,453,'_wp_attached_file','2021/11/MB-Classic_WhiteBG-2.png'),(3075,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8000;s:6:\"height\";i:8000;s:4:\"file\";s:32:\"2021/11/MB-Classic_WhiteBG-2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"MB-Classic_WhiteBG-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"MB-Classic_WhiteBG-2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"MB-Classic_WhiteBG-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"MB-Classic_WhiteBG-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"MB-Classic_WhiteBG-2-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3076,454,'_wp_attached_file','2021/11/MB-Signature-02-1.png'),(3077,454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:9225;s:6:\"height\";i:11730;s:4:\"file\";s:29:\"2021/11/MB-Signature-02-1.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-236x300.png\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"MB-Signature-02-1-805x1024.png\";s:5:\"width\";i:805;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-768x977.png\";s:5:\"width\";i:768;s:6:\"height\";i:977;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"MB-Signature-02-1-1208x1536.png\";s:5:\"width\";i:1208;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"MB-Signature-02-1-1611x2048.png\";s:5:\"width\";i:1611;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"mailpoet_newsletter_max\";a:4:{s:4:\"file\";s:31:\"MB-Signature-02-1-1320x1678.png\";s:5:\"width\";i:1320;s:6:\"height\";i:1678;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"MB-Signature-02-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-600x763.png\";s:5:\"width\";i:600;s:6:\"height\";i:763;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-600x763.png\";s:5:\"width\";i:600;s:6:\"height\";i:763;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"MB-Signature-02-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3079,455,'_wp_attached_file','2021/11/SIGNATURE-BOX-scaled.jpg'),(3080,455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:32:\"2021/11/SIGNATURE-BOX-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"SIGNATURE-BOX-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"SIGNATURE-BOX-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"SIGNATURE-BOX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"SIGNATURE-BOX-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"SIGNATURE-BOX-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"18\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1590626792\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"SIGNATURE-BOX.jpg\";}'),(3081,456,'_wp_attached_file','2021/11/MB-Classic_WhiteBG-2-1.png'),(3082,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8000;s:6:\"height\";i:8000;s:4:\"file\";s:34:\"2021/11/MB-Classic_WhiteBG-2-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"MB-Classic_WhiteBG-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"MB-Classic_WhiteBG-2-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"MB-Classic_WhiteBG-2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"MB-Classic_WhiteBG-2-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"MB-Classic_WhiteBG-2-1-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3083,457,'_wp_attached_file','2021/11/CLASSIC-BOX-scaled.jpg'),(3084,457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2021/11/CLASSIC-BOX-scaled.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"CLASSIC-BOX-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"CLASSIC-BOX-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"CLASSIC-BOX-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"mailpoet_newsletter_max\";a:4:{s:4:\"file\";s:24:\"CLASSIC-BOX-1320x880.jpg\";s:5:\"width\";i:1320;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"CLASSIC-BOX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"CLASSIC-BOX-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1590626182\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"CLASSIC-BOX.jpg\";}'),(3085,458,'_wp_attached_file','2021/11/SIGNATURE-BOX-1-scaled.jpg'),(3086,458,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:34:\"2021/11/SIGNATURE-BOX-1-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"SIGNATURE-BOX-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"SIGNATURE-BOX-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"SIGNATURE-BOX-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"SIGNATURE-BOX-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"SIGNATURE-BOX-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"18\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1590626792\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"SIGNATURE-BOX-1.jpg\";}'),(3090,459,'_elementor_edit_mode','builder'),(3091,459,'_elementor_template_type','wp-page'),(3092,459,'_elementor_version','3.4.3'),(3093,459,'_wp_page_template','default'),(3094,459,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3095,459,'_elementor_page_assets','a:0:{}'),(3096,459,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3097,459,'_elementor_css','a:7:{s:4:\"time\";i:1637169248;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:9013:\".elementor-12 .elementor-element.elementor-element-dbac0ad:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/chair-photo-scaled.jpg\");background-size:cover;}.elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-dbac0ad:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-size:auto;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3098,460,'_elementor_edit_mode','builder'),(3099,460,'_elementor_template_type','wp-page'),(3100,460,'_elementor_version','3.4.3'),(3101,460,'_wp_page_template','default'),(3102,460,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\",\"id\":365,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\"},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"A\\/W 21\\nESSENTIALS\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3103,460,'_elementor_page_assets','a:0:{}'),(3104,460,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3105,460,'_elementor_css','a:7:{s:4:\"time\";i:1637169248;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:9013:\".elementor-12 .elementor-element.elementor-element-dbac0ad:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/chair-photo-scaled.jpg\");background-size:cover;}.elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-dbac0ad:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-size:auto;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3106,461,'_elementor_edit_mode','builder'),(3107,461,'_elementor_template_type','wp-page'),(3108,461,'_elementor_version','3.4.3'),(3109,461,'_wp_page_template','default'),(3110,461,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":449,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater-scaled.jpg\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3111,461,'_elementor_page_assets','a:0:{}'),(3112,461,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3113,461,'_elementor_css','a:7:{s:4:\"time\";i:1637169248;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:9013:\".elementor-12 .elementor-element.elementor-element-dbac0ad:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/chair-photo-scaled.jpg\");background-size:cover;}.elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-dbac0ad:not(.elementor-motion-effects-element-type-background), .elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-size:auto;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3116,462,'_wp_attached_file','2021/11/blue-sweater.png'),(3117,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:24:\"2021/11/blue-sweater.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"blue-sweater-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"blue-sweater-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"blue-sweater-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"blue-sweater-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"blue-sweater-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"blue-sweater-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"blue-sweater-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"blue-sweater-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3118,463,'_elementor_edit_mode','builder'),(3119,463,'_elementor_template_type','wp-page'),(3120,463,'_elementor_version','3.4.8'),(3121,463,'_wp_page_template','default'),(3122,463,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":449,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater-scaled.jpg\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3123,463,'_elementor_page_assets','a:0:{}'),(3124,463,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3125,463,'_elementor_css','a:7:{s:4:\"time\";i:1637169366;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8367:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:left;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:left;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3126,464,'_elementor_edit_mode','builder'),(3127,464,'_elementor_template_type','wp-page'),(3128,464,'_elementor_version','3.4.8'),(3129,464,'_wp_page_template','default'),(3130,464,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":449,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater-scaled.jpg\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3131,464,'_elementor_page_assets','a:0:{}'),(3132,464,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3133,464,'_elementor_css','a:7:{s:4:\"time\";i:1637169366;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8367:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:left;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:left;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3134,465,'_elementor_edit_mode','builder'),(3135,465,'_elementor_template_type','wp-page'),(3136,465,'_elementor_version','3.4.8'),(3137,465,'_wp_page_template','default'),(3138,465,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":462,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater.png\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3139,465,'_elementor_page_assets','a:0:{}'),(3140,465,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3141,465,'_elementor_css','a:7:{s:4:\"time\";i:1637169366;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8367:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:left;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:left;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3144,466,'_wp_attached_file','2021/11/B344825D-A41F-4706-9300-48F8AC4B839D.png'),(3145,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:48:\"2021/11/B344825D-A41F-4706-9300-48F8AC4B839D.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"B344825D-A41F-4706-9300-48F8AC4B839D-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3157,468,'_elementor_edit_mode','builder'),(3158,468,'_elementor_template_type','wp-page'),(3159,468,'_elementor_version','3.4.8'),(3160,468,'_wp_page_template','default'),(3161,468,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":462,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater.png\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3162,468,'_elementor_page_assets','a:0:{}'),(3163,468,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3164,468,'_elementor_css','a:7:{s:4:\"time\";i:1637255292;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8367:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:left;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:left;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3165,469,'_elementor_edit_mode','builder'),(3166,469,'_elementor_template_type','wp-page'),(3167,469,'_elementor_version','3.4.8'),(3168,469,'_wp_page_template','default'),(3169,469,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":462,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater.png\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3170,469,'_elementor_page_assets','a:0:{}'),(3171,469,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3172,469,'_elementor_css','a:7:{s:4:\"time\";i:1637255292;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8367:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:left;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:left;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3173,470,'_elementor_edit_mode','builder'),(3174,470,'_elementor_template_type','wp-page'),(3175,470,'_elementor_version','3.4.8'),(3176,470,'_wp_page_template','default'),(3177,470,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":462,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater.png\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"},{\"id\":466,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/B344825D-A41F-4706-9300-48F8AC4B839D.png\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3178,470,'_elementor_page_assets','a:0:{}'),(3179,470,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3180,470,'_elementor_css','a:7:{s:4:\"time\";i:1637255292;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8367:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:left;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:left;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3181,12,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3183,341,'_last_editor_used_jetpack','classic-editor'),(3184,341,'_wc_gla_visibility','sync-and-show'),(3185,56,'_regular_price','55'),(3186,56,'_wc_gla_visibility','sync-and-show'),(3187,12,'_last_editor_used_jetpack','block-editor'),(3197,474,'_elementor_edit_mode','builder'),(3198,474,'_elementor_template_type','wp-page'),(3199,474,'_elementor_version','3.4.8'),(3200,474,'_wp_page_template','default'),(3201,474,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":462,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater.png\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"},{\"id\":466,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/B344825D-A41F-4706-9300-48F8AC4B839D.png\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3202,474,'_elementor_page_assets','a:0:{}'),(3203,474,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3204,474,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3205,475,'_elementor_edit_mode','builder'),(3206,475,'_elementor_template_type','wp-page'),(3207,475,'_elementor_version','3.4.8'),(3208,475,'_wp_page_template','default'),(3209,475,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":450,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/red-t-neck.jpg\"},{\"id\":462,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/blue-sweater.png\"},{\"id\":451,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/tweed-trouser-scaled.jpg\"},{\"id\":365,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/chair-photo-scaled.jpg\"},{\"id\":455,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/SIGNATURE-BOX-scaled.jpg\"},{\"id\":457,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/CLASSIC-BOX-scaled.jpg\"},{\"id\":466,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/11\\/B344825D-A41F-4706-9300-48F8AC4B839D.png\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW READY TO WEAR\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOLIDAY GIFT GIVING\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\"},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\"},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3210,475,'_elementor_page_assets','a:0:{}'),(3211,475,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3212,475,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3213,476,'_elementor_edit_mode','builder'),(3214,476,'_elementor_template_type','wp-page'),(3215,476,'_elementor_version','3.4.8'),(3216,476,'_wp_page_template','default'),(3217,476,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3218,476,'_elementor_page_assets','a:0:{}'),(3219,476,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3220,476,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3222,477,'_field_8','shakeel gill'),(3223,477,'_field_14','shakcel.gill10@gmail.com'),(3224,477,'_field_9','Dear Sir\n\nCan you supply any of this project: T shirt, Towels, Hat caps, PPE , Glove, face mask and sanitizer etc\n\nThanks'),(3225,477,'_form_id','2'),(3226,477,'_seq_num','1'),(3227,478,'_field_1','Amanda Frost (Blake Frost)'),(3228,478,'_field_5','5019122834'),(3229,478,'_field_6','02/05/2022'),(3230,478,'_field_7','Navy'),(3231,478,'_field_3','We are looking for a navy sports jacket and pants to rent for Homecoming. \nThanks!!'),(3232,478,'_form_id','1'),(3233,478,'_seq_num','5'),(3245,481,'_elementor_edit_mode','builder'),(3246,481,'_elementor_template_type','wp-page'),(3247,481,'_elementor_version','3.5.3'),(3248,481,'_wp_page_template','default'),(3249,481,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3250,481,'_elementor_page_assets','a:0:{}'),(3251,481,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3252,481,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3253,482,'_elementor_edit_mode','builder'),(3254,482,'_elementor_template_type','wp-page'),(3255,482,'_elementor_version','3.5.3'),(3256,482,'_wp_page_template','default'),(3257,482,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3258,482,'_elementor_page_assets','a:0:{}'),(3259,482,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3260,482,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3261,483,'_elementor_edit_mode','builder'),(3262,483,'_elementor_template_type','wp-page'),(3263,483,'_elementor_version','3.5.3'),(3264,483,'_wp_page_template','default'),(3265,483,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedorentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3266,483,'_elementor_page_assets','a:0:{}'),(3267,483,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3268,483,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3270,484,'_elementor_edit_mode','builder'),(3271,484,'_elementor_template_type','wp-page'),(3272,484,'_elementor_version','3.5.5'),(3273,484,'_wp_page_template','default'),(3274,484,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedorentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3275,484,'_elementor_page_assets','a:0:{}'),(3276,484,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3277,484,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3278,484,'_elementor_css','a:7:{s:4:\"time\";i:1643990574;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3279,485,'_elementor_edit_mode','builder'),(3280,485,'_elementor_template_type','wp-page'),(3281,485,'_elementor_version','3.5.5'),(3282,485,'_wp_page_template','default'),(3283,485,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedorentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3284,485,'_elementor_page_assets','a:0:{}'),(3285,485,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3286,485,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3287,485,'_elementor_css','a:7:{s:4:\"time\";i:1643990574;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3288,486,'_elementor_edit_mode','builder'),(3289,486,'_elementor_template_type','wp-page'),(3290,486,'_elementor_version','3.5.5'),(3291,486,'_wp_page_template','default'),(3292,486,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedo-rentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3293,486,'_elementor_page_assets','a:0:{}'),(3294,486,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3295,486,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3296,486,'_elementor_css','a:7:{s:4:\"time\";i:1643990574;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3298,488,'_elementor_edit_mode','builder'),(3299,488,'_elementor_template_type','wp-page'),(3300,488,'_elementor_version','3.5.5'),(3301,488,'_wp_page_template','default'),(3302,488,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedo-rentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3303,488,'_elementor_page_assets','a:0:{}'),(3304,488,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3305,488,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3306,488,'_elementor_css','a:7:{s:4:\"time\";i:1643990901;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3307,489,'_elementor_edit_mode','builder'),(3308,489,'_elementor_template_type','wp-page'),(3309,489,'_elementor_version','3.5.5'),(3310,489,'_wp_page_template','default'),(3311,489,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedo-rentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3312,489,'_elementor_page_assets','a:0:{}'),(3313,489,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3314,489,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3315,489,'_elementor_css','a:7:{s:4:\"time\";i:1643990901;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3316,490,'_elementor_edit_mode','builder'),(3317,490,'_elementor_template_type','wp-page'),(3318,490,'_elementor_version','3.5.5'),(3319,490,'_wp_page_template','default'),(3320,490,'_elementor_data','[{\"id\":\"dbac0ad\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/09\\/fall-21-promo.m4v\",\"id\":399,\"alt\":\"\",\"source\":\"library\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000FA\",\"background_size_mobile\":\"auto\",\"background_slideshow_gallery\":[{\"id\":315,\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/7S8A5730-1.jpg\"}],\"pa_condition_repeater\":[{\"_id\":\"b3c2a30\"}]},\"elements\":[{\"id\":\"81e0eb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"pa_condition_repeater\":[{\"_id\":\"61c2460\"}]},\"elements\":[{\"id\":\"d2f3aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"VIEW NOW on tuxedo rentals\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/tuxedorentals\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"8807cce\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56bd641\",\"elType\":\"widget\",\"settings\":{\"title\":\"YOUR FORMAL WEAR DESTINATION\",\"title_color\":\"#E30F2A\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/ready-to-wear\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"350434b\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f6c25f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"54d543d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d342da\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"video\",\"pa_condition_repeater\":[{\"_id\":\"ab77c0a\"}]},\"elements\":[{\"id\":\"bec133d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\",\"id\":21,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000EB\",\"background_slideshow_gallery\":[{\"id\":20,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\"},{\"id\":21,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/about-menswear1.jpg\"}],\"background_slideshow_slide_duration\":2000,\"pa_condition_repeater\":[{\"_id\":\"84816d6\"}]},\"elements\":[{\"id\":\"60b05a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3c922dd\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"296a5e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Suits\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/suits\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"c8444c8\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e288d4\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"f9dbf41\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6276550\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"2efbdf0\"}]},\"elements\":[{\"id\":\"1d8ac6b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/wp-content\\/uploads\\/2021\\/08\\/10SecAllPair-Promo.mp4\",\"id\":147,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"d0bed75\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"573488b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/theexperience-michaelblake.jpg\",\"id\":20,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":168,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear.jpg\"},{\"id\":169,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear1-1.jpg\"},{\"id\":170,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear2.jpg\"},{\"id\":171,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear3-1.jpg\"},{\"id\":172,\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/MichaelBlakeEyewear4.jpg\"}],\"background_slideshow_slide_duration\":1500,\"pa_condition_repeater\":[{\"_id\":\"536f069\"}]},\"elements\":[{\"id\":\"d13e0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"pa_condition_repeater\":[{\"_id\":\"1278723\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"984a883\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accessories\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/product-category\\/accessories\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"right\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"b150051\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d07d413\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"a974941\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d5796fb\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"pa_condition_repeater\":[{\"_id\":\"63db8bb\"}]},\"elements\":[{\"id\":\"5d8fef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/menswear-michaelblake.jpg\",\"id\":19,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"31c9b56\"}]},\"elements\":[{\"id\":\"5e502e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"View Now\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Arial\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"ee80b22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d73b70\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"title_color\":\"#E30F2A\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/michaelblakemenswear.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":-5,\"vertical\":-1,\"blur\":3,\"color\":\"#10100F\"},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"3fce32f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3d19e\",\"elType\":\"widget\",\"settings\":{\"pa_condition_repeater\":[{\"_id\":\"bc71d8d\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"eaee5cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"d546d6b\"}]},\"elements\":[{\"id\":\"3e5534a\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"hosted\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"hosted_url\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4\",\"id\":148,\"alt\":\"\",\"source\":\"library\"},\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"mute\":\"yes\",\"loop\":\"yes\",\"pa_condition_repeater\":[{\"_id\":\"baf5e86\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"d048aab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/michaelblakemenswear.calvarycrossag.com\\/wp-content\\/uploads\\/2021\\/08\\/contact-blakemenswear.png\",\"id\":22,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"75c700d\"}]},\"elements\":[{\"id\":\"c71219e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"cf69514\"}]},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(3321,490,'_elementor_page_assets','a:0:{}'),(3322,490,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(3323,490,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:7;s:22:\"typography_font_family\";i:7;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:28:\"text_shadow_text_shadow_type\";i:4;s:23:\"text_shadow_text_shadow\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:8;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:17:\"background_repeat\";i:3;s:15:\"background_size\";i:4;s:28:\"background_slideshow_gallery\";i:2;s:35:\"background_slideshow_slide_duration\";i:2;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:15:\"background_size\";i:1;s:22:\"background_size_mobile\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:6:{s:10:\"video_type\";i:2;s:10:\"hosted_url\";i:2;s:8:\"autoplay\";i:2;s:14:\"play_on_mobile\";i:2;s:4:\"mute\";i:2;s:4:\"loop\";i:2;}}}}}'),(3324,490,'_elementor_css','a:7:{s:4:\"time\";i:1643990901;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3325,12,'_elementor_css','a:7:{s:4:\"time\";i:1643991455;s:5:\"fonts\";a:2:{i:0;s:5:\"Arial\";i:2;s:6:\"Roboto\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:6:\"inline\";i:0;s:0:\"\";s:3:\"css\";s:8369:\".elementor-12 .elementor-element.elementor-element-dbac0ad > .elementor-background-overlay{background-color:#000000FA;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-dbac0ad{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d2f3aa2{text-align:right;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d2f3aa2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-56bd641{text-align:right;}.elementor-12 .elementor-element.elementor-element-56bd641 .elementor-heading-title{color:#E30F2A;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-56bd641 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:800px;}.elementor-12 .elementor-element.elementor-element-5d342da{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d342da > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-bec133d > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-60b05a1 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-60b05a1 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-296a5e1{text-align:left;}.elementor-12 .elementor-element.elementor-element-296a5e1 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-296a5e1 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-3e288d4 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-6276550:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-6276550 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-6276550 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-573488b > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d13e0d6{text-align:right;}.elementor-12 .elementor-element.elementor-element-d13e0d6 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-d13e0d6 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-984a883{text-align:right;}.elementor-12 .elementor-element.elementor-element-984a883 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-984a883 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-d07d413 .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-5d8fef5:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg\");background-position:bottom center;background-repeat:no-repeat;background-size:cover;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-5d8fef5 > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-5e502e2 .elementor-heading-title{color:#FFFFFF;font-family:\"Arial\", Sans-serif;font-size:17px;font-weight:600;text-transform:uppercase;}.elementor-12 .elementor-element.elementor-element-5e502e2 > .elementor-widget-container{padding:15px 15px 0px 15px;}.elementor-12 .elementor-element.elementor-element-6d73b70{text-align:left;}.elementor-12 .elementor-element.elementor-element-6d73b70 .elementor-heading-title{color:#E30F2A;font-family:\"Roboto\", Sans-serif;font-weight:400;text-transform:uppercase;text-shadow:-5px -1px 3px #10100F;}.elementor-12 .elementor-element.elementor-element-6d73b70 > .elementor-widget-container{padding:0px 15px 15px 15px;}.elementor-12 .elementor-element.elementor-element-2c3d19e .elementor-spacer-inner{height:50px;}.elementor-12 .elementor-element.elementor-element-eaee5cd:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-eaee5cd > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab:not(.elementor-motion-effects-element-type-background) > .elementor-widget-wrap, .elementor-12 .elementor-element.elementor-element-d048aab > .elementor-widget-wrap > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;background-image:url(\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png\");background-position:center center;background-size:cover;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{background-color:#000000;opacity:0.5;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-12 .elementor-element.elementor-element-d048aab > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-12 .elementor-element.elementor-element-c71219e .elementor-spacer-inner{height:200px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-12 .elementor-element.elementor-element-3f6c25f .elementor-spacer-inner{height:220px;}}\";}'),(3326,491,'_field_1','malaya'),(3327,491,'_field_5','5013983691'),(3328,491,'_field_6','02/12/2022'),(3329,491,'_field_7','silver'),(3330,491,'_field_3',''),(3331,491,'_form_id','1'),(3332,491,'_seq_num','6'),(3333,385,'ekit_post_views_count','1'),(3334,493,'_field_1','Vincent Newton'),(3335,493,'_field_5','5018047414'),(3336,493,'_field_6','06/04/2022'),(3337,493,'_field_7','Burgundy, pink, rose gold'),(3338,493,'_field_3','Looking for suit rentals for 13 men and 1 child in primary burgundy color.'),(3339,493,'_form_id','1'),(3340,493,'_seq_num','7'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=494 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2021-08-15 20:32:01','2021-08-15 20:32:01','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2021-08-15 20:32:01','2021-08-15 20:32:01','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=1',0,'post','',1),(2,1,'2021-08-15 20:32:01','2021-08-15 20:32:01','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://michaelblakemenswear.calvarycrossag.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-08-15 20:32:01','2021-08-15 20:32:01','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=2',0,'page','',0),(3,1,'2021-08-15 20:32:01','2021-08-15 20:32:01','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://michaelblakemenswear.calvarycrossag.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-08-15 20:32:01','2021-08-15 20:32:01','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=3',0,'page','',0),(5,1,'2021-08-15 20:40:40','2021-08-15 20:40:40','','Default Kit','','publish','closed','closed','','default-kit','','','2021-10-04 19:33:23','2021-10-04 19:33:23','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=5',0,'elementor_library','',0),(6,1,'2021-08-15 20:40:44','2021-08-15 20:40:44','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-08-15 20:40:44','2021-08-15 20:40:44','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/woocommerce-placeholder.png',0,'attachment','image/png',0),(7,1,'2021-08-15 20:40:46','2021-08-15 20:40:46','','Shop','','publish','closed','closed','','shop','','','2021-08-15 20:40:46','2021-08-15 20:40:46','',0,'https://michaelblakemenswear.calvarycrossag.com/shop/',0,'page','',0),(8,1,'2021-08-15 20:40:46','2021-08-15 20:40:46','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2021-08-15 20:40:46','2021-08-15 20:40:46','',0,'https://michaelblakemenswear.calvarycrossag.com/cart/',0,'page','',0),(9,1,'2021-08-15 20:40:46','2021-08-15 20:40:46','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2021-08-15 20:40:46','2021-08-15 20:40:46','',0,'https://michaelblakemenswear.calvarycrossag.com/checkout/',0,'page','',0),(10,1,'2021-08-15 20:40:46','2021-08-15 20:40:46','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2021-08-15 20:40:46','2021-08-15 20:40:46','',0,'https://michaelblakemenswear.calvarycrossag.com/my-account/',0,'page','',0),(12,1,'2021-08-15 20:53:45','2021-08-15 20:53:45','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedorentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','publish','closed','closed','','home-page','','','2022-02-04 16:16:48','2022-02-04 16:16:48','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=12',0,'page','',0),(13,1,'2021-08-15 20:52:09','2021-08-15 20:52:09','','Elementor #12','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 20:52:09','2021-08-15 20:52:09','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=13',0,'revision','',0),(14,1,'2021-08-15 21:07:18','2021-08-15 21:07:18','','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 21:07:18','2021-08-15 21:07:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=14',0,'revision','',0),(15,1,'2021-08-15 21:07:18','2021-08-15 21:07:18','','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 21:07:18','2021-08-15 21:07:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=15',0,'revision','',0),(16,1,'2021-08-15 21:07:18','2021-08-15 21:07:18','<h2>Add Your Heading Text Here</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 21:07:18','2021-08-15 21:07:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=16',0,'revision','',0),(18,1,'2021-08-15 21:23:10','2021-08-15 21:23:10','','MichaelBlakeMensWearTopImage','','inherit','open','closed','','michaelblakemensweartopimage','','','2021-08-15 21:23:10','2021-08-15 21:23:10','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeMensWearTopImage.jpg',0,'attachment','image/jpeg',0),(19,1,'2021-08-15 21:45:16','2021-08-15 21:45:16','','menswear-michaelblake','','inherit','open','closed','','menswear-michaelblake','','','2021-08-15 21:45:16','2021-08-15 21:45:16','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/menswear-michaelblake.jpg',0,'attachment','image/jpeg',0),(20,1,'2021-08-15 21:49:47','2021-08-15 21:49:47','','theexperience-michaelblake','','inherit','open','closed','','theexperience-michaelblake','','','2021-08-15 21:49:47','2021-08-15 21:49:47','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/theexperience-michaelblake.jpg',0,'attachment','image/jpeg',0),(21,1,'2021-08-15 22:14:20','2021-08-15 22:14:20','','about-menswear1','','inherit','open','closed','','about-menswear1','','','2021-08-15 22:14:20','2021-08-15 22:14:20','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/about-menswear1.jpg',0,'attachment','image/jpeg',0),(22,1,'2021-08-15 22:20:38','2021-08-15 22:20:38','','contact-blakemenswear','','inherit','open','closed','','contact-blakemenswear','','','2021-08-15 22:20:38','2021-08-15 22:20:38','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/contact-blakemenswear.png',0,'attachment','image/png',0),(23,1,'2021-08-15 22:24:52','2021-08-15 22:24:52','<h2>Add Your Heading Text Here</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 22:24:52','2021-08-15 22:24:52','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=23',0,'revision','',0),(24,1,'2021-08-15 22:24:52','2021-08-15 22:24:52','<h2>Add Your Heading Text Here</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 22:24:52','2021-08-15 22:24:52','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=24',0,'revision','',0),(25,1,'2021-08-15 22:24:52','2021-08-15 22:24:52','<h2>View Now</h2> \n <h2>Men\'s wear available in all sizes</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-15 22:24:52','2021-08-15 22:24:52','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=25',0,'revision','',0),(28,1,'2021-08-21 22:57:55','2021-08-21 22:57:55','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-330\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/grooming/\" class = \"hfe-sub-menu-item\">Grooming</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','publish','closed','closed','','michael-blake-website-header','','','2021-10-04 20:00:00','2021-10-04 20:00:00','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=elementor-hf&p=28',0,'elementor-hf','',0),(29,1,'2021-08-21 22:57:55','2021-08-21 22:57:55','','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-21 22:57:55','2021-08-21 22:57:55','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=29',0,'revision','',0),(31,1,'2021-08-21 23:42:22','2021-08-21 23:42:22','','MichaelBlakeLogo','','inherit','open','closed','','michaelblakelogo','','','2021-08-21 23:42:22','2021-08-21 23:42:22','',28,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo.png',0,'attachment','image/png',0),(32,1,'2021-08-21 23:42:57','2021-08-21 23:42:57','','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-21 23:42:57','2021-08-21 23:42:57','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=32',0,'revision','',0),(33,1,'2021-08-21 23:42:57','2021-08-21 23:42:57','','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-21 23:42:57','2021-08-21 23:42:57','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=33',0,'revision','',0),(34,1,'2021-08-21 23:42:58','2021-08-21 23:42:58','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Type & Hit Enter...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 0 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-21 23:42:58','2021-08-21 23:42:58','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=34',0,'revision','',0),(35,1,'2021-08-30 01:44:29','2021-08-22 01:22:45','','Home','','publish','closed','closed','','35','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=35',1,'nav_menu_item','',0),(36,1,'2021-08-30 01:44:29','2021-08-22 01:22:45','','Made To Measure','','publish','closed','closed','','made-to-measure','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=36',2,'nav_menu_item','',0),(37,1,'2021-08-30 01:44:29','2021-08-22 01:22:45','','Ready To Wear','','publish','closed','closed','','ready-to-wear','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=37',3,'nav_menu_item','',0),(38,1,'2021-08-30 01:44:29','2021-08-22 01:22:45','','Accessories','','publish','closed','closed','','accessories','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=38',4,'nav_menu_item','',0),(40,1,'2021-08-30 01:44:29','2021-08-22 01:22:45','','MBMag','','publish','closed','closed','','mbmag','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=40',11,'nav_menu_item','',0),(42,1,'2021-08-22 01:30:01','2021-08-22 01:30:01','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Type & Hit Enter...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 0 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-22 01:30:01','2021-08-22 01:30:01','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=42',0,'revision','',0),(43,1,'2021-08-22 01:30:01','2021-08-22 01:30:01','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Type & Hit Enter...\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 0 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-22 01:30:01','2021-08-22 01:30:01','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=43',0,'revision','',0),(44,1,'2021-08-22 01:30:01','2021-08-22 01:30:01','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a href=\"#\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"#\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"#\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-39\"><a href=\"#\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a href=\"#\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 0 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-22 01:30:01','2021-08-22 01:30:01','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=44',0,'revision','',0),(46,1,'2021-08-22 01:38:03','2021-08-22 01:38:03','<h2>View Now</h2> \n <h2>Men\'s wear available in all sizes</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-22 01:38:03','2021-08-22 01:38:03','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=46',0,'revision','',0),(47,1,'2021-08-22 01:38:03','2021-08-22 01:38:03','<h2>View Now</h2> \n <h2>Men\'s wear available in all sizes</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-22 01:38:03','2021-08-22 01:38:03','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=47',0,'revision','',0),(48,1,'2021-08-22 01:38:03','2021-08-22 01:38:03','<h2>View Now</h2> \n <h2>Men\'s wear available in all sizes</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-22 01:38:03','2021-08-22 01:38:03','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=48',0,'revision','',0),(51,1,'2021-08-22 20:18:31','2021-08-22 20:18:31','','Michael Blake\'s T-Shirt','These are high-quality t-shirts that will have everybody looking at you in envy. Buy one now!','publish','open','closed','','michael-blakes-t-shirt','','','2021-08-22 20:18:31','2021-08-22 20:18:31','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product&p=51',0,'product','',0),(52,1,'2021-08-22 20:16:23','2021-08-22 20:16:23','','Michael Blake\'s T-Shirt - S','Sizes: S','publish','closed','closed','','michael-blakes-t-shirt-s','','','2021-08-22 20:18:29','2021-08-22 20:18:29','',51,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product_variation&p=52',1,'product_variation','',0),(53,1,'2021-08-22 20:16:23','2021-08-22 20:16:23','','Michael Blake\'s T-Shirt - M','Sizes: M','publish','closed','closed','','michael-blakes-t-shirt-m','','','2021-08-22 20:18:29','2021-08-22 20:18:29','',51,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product_variation&p=53',2,'product_variation','',0),(54,1,'2021-08-22 20:16:23','2021-08-22 20:16:23','','Michael Blake\'s T-Shirt - L','Sizes: L','publish','closed','closed','','michael-blakes-t-shirt-l','','','2021-08-22 20:18:29','2021-08-22 20:18:29','',51,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product_variation&p=54',3,'product_variation','',0),(55,1,'2021-08-22 20:16:23','2021-08-22 20:16:23','','Michael Blake\'s T-Shirt - XL','Sizes: XL','publish','closed','closed','','michael-blakes-t-shirt-xl','','','2021-08-22 20:18:30','2021-08-22 20:18:30','',51,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product_variation&p=55',4,'product_variation','',0),(56,1,'2021-08-22 20:25:07','2021-08-22 20:25:07','','Merino Sweater','Merino wool is finer and softer than regular wool, making it comfortable when worn next to your skin. This wool has natural wicking properties which keeps you insulated in chilly temperatures. Offered in rich hues for fall, easily paired with our tweed trouser and suede jacket for a smart casual look.','publish','open','closed','','marino-sweater','','','2021-12-08 16:30:58','2021-12-08 16:30:58','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product&p=56',0,'product','',0),(73,1,'2021-08-22 21:32:23','2021-08-22 21:32:23','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a href=\"#\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"#\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"#\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-39\"><a href=\"#\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a href=\"#\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 0 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-22 21:32:23','2021-08-22 21:32:23','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=73',0,'revision','',0),(74,1,'2021-08-22 21:32:24','2021-08-22 21:32:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a href=\"#\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"#\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"#\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-39\"><a href=\"#\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a href=\"#\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 0 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-22 21:32:24','2021-08-22 21:32:24','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=74',0,'revision','',0),(75,1,'2021-08-22 21:32:24','2021-08-22 21:32:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a href=\"#\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"#\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"#\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-39\"><a href=\"#\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a href=\"#\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-22 21:32:24','2021-08-22 21:32:24','',28,'https://michaelblakemenswear.calvarycrossag.com/?p=75',0,'revision','',0),(76,1,'2021-08-22 22:28:46','2021-08-22 22:28:46','<noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','publish','closed','closed','','tuxedo-rentals','','','2021-08-22 22:29:07','2021-08-22 22:29:07','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=76',0,'page','',0),(78,1,'2021-08-22 22:03:26','2021-08-22 22:03:26','','Elementor #76','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:03:26','2021-08-22 22:03:26','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=78',0,'revision','',0),(79,1,'2021-08-22 22:15:05','2021-08-22 22:15:05','','MichaelBlakeTuxedoRental','','inherit','open','closed','','michaelblaketuxedorental','','','2021-08-22 22:15:05','2021-08-22 22:15:05','',76,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeTuxedoRental.jpg',0,'attachment','image/jpeg',0),(80,1,'2021-08-22 22:28:54','2021-08-22 22:28:54','<a href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <h2>\n Tuxedo Rentals \n </h2 > \n </a>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:28:54','2021-08-22 22:28:54','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=80',0,'revision','',0),(81,1,'2021-08-22 22:28:54','2021-08-22 22:28:54','<a href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <h2>\n Tuxedo Rentals \n </h2 > \n </a>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:28:54','2021-08-22 22:28:54','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=81',0,'revision','',0),(82,1,'2021-08-22 22:28:54','2021-08-22 22:28:54','<noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:28:54','2021-08-22 22:28:54','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=82',0,'revision','',0),(83,1,'2021-08-22 22:29:07','2021-08-22 22:29:07','<noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:29:07','2021-08-22 22:29:07','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=83',0,'revision','',0),(84,1,'2021-08-22 22:29:07','2021-08-22 22:29:07','<noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:29:07','2021-08-22 22:29:07','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=84',0,'revision','',0),(85,1,'2021-08-22 22:29:07','2021-08-22 22:29:07','<noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Tuxedo Rentals','','inherit','closed','closed','','76-revision-v1','','','2021-08-22 22:29:07','2021-08-22 22:29:07','',76,'https://michaelblakemenswear.calvarycrossag.com/?p=85',0,'revision','',0),(86,1,'2021-08-23 00:26:12','2021-08-23 00:26:12','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','publish','closed','closed','','michael-blake-footer','','','2021-10-04 19:59:05','2021-10-04 19:59:05','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=elementor-hf&p=86',0,'elementor-hf','',0),(87,1,'2021-08-23 00:26:12','2021-08-23 00:26:12','','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 00:26:12','2021-08-23 00:26:12','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=87',0,'revision','',0),(89,1,'2021-08-30 01:44:29','2021-08-23 00:37:01',' ','','','publish','closed','closed','','89','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=89',10,'nav_menu_item','',0),(90,1,'2021-08-23 00:44:09','2021-08-23 00:44:09','','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 00:44:09','2021-08-23 00:44:09','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=90',0,'revision','',0),(91,1,'2021-08-23 00:44:09','2021-08-23 00:44:09','','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 00:44:09','2021-08-23 00:44:09','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=91',0,'revision','',0),(92,1,'2021-08-23 00:44:09','2021-08-23 00:44:09','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 00:44:09','2021-08-23 00:44:09','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=92',0,'revision','',0),(93,1,'2021-08-23 00:49:02','2021-08-23 00:49:02','','MichaelBlakeHomePage','','inherit','open','closed','','michaelblakehomepage','','','2021-08-23 00:49:02','2021-08-23 00:49:02','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePage.jpg',0,'attachment','image/jpeg',0),(94,1,'2021-08-23 00:52:18','2021-08-23 00:52:18','<h2>View Now</h2> \n <h2>Men\'s wear available in all sizes</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 00:52:18','2021-08-23 00:52:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=94',0,'revision','',0),(95,1,'2021-08-23 00:52:18','2021-08-23 00:52:18','<h2>View Now</h2> \n <h2>Men\'s wear available in all sizes</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 00:52:18','2021-08-23 00:52:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=95',0,'revision','',0),(96,1,'2021-08-23 00:52:18','2021-08-23 00:52:18','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 00:52:18','2021-08-23 00:52:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=96',0,'revision','',0),(97,1,'2021-08-23 00:58:52','2021-08-23 00:58:52','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','publish','closed','closed','','contact-us','','','2021-08-23 02:36:57','2021-08-23 02:36:57','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=97',0,'page','',0),(98,1,'2021-08-23 00:53:20','2021-08-23 00:53:20','','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 00:53:20','2021-08-23 00:53:20','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=98',0,'revision','',0),(99,1,'2021-08-23 02:18:54','2021-08-23 02:18:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 02:18:54','2021-08-23 02:18:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=99',0,'revision','',0),(100,1,'2021-08-23 02:18:54','2021-08-23 02:18:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 02:18:54','2021-08-23 02:18:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=100',0,'revision','',0),(101,1,'2021-08-23 02:18:54','2021-08-23 02:18:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 02:18:54','2021-08-23 02:18:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=101',0,'revision','',0),(103,1,'2021-08-23 02:26:09','2021-08-23 02:26:09','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:26:09','2021-08-23 02:26:09','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=103',0,'revision','',0),(104,1,'2021-08-23 02:26:09','2021-08-23 02:26:09','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:26:09','2021-08-23 02:26:09','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=104',0,'revision','',0),(105,1,'2021-08-23 02:26:09','2021-08-23 02:26:09','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:26:09','2021-08-23 02:26:09','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=105',0,'revision','',0),(107,1,'2021-08-23 02:34:12','2021-08-23 02:34:12','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:34:12','2021-08-23 02:34:12','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=107',0,'revision','',0),(108,1,'2021-08-23 02:34:12','2021-08-23 02:34:12','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:34:12','2021-08-23 02:34:12','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=108',0,'revision','',0),(109,1,'2021-08-23 02:34:12','2021-08-23 02:34:12','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:34:12','2021-08-23 02:34:12','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=109',0,'revision','',0),(110,1,'2021-08-23 02:35:02','2021-08-23 02:35:02','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:35:02','2021-08-23 02:35:02','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=110',0,'revision','',0),(111,1,'2021-08-23 02:35:02','2021-08-23 02:35:02','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:35:02','2021-08-23 02:35:02','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=111',0,'revision','',0),(112,1,'2021-08-23 02:35:03','2021-08-23 02:35:03','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:35:03','2021-08-23 02:35:03','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=112',0,'revision','',0),(114,1,'2021-08-23 02:36:56','2021-08-23 02:36:56','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:36:56','2021-08-23 02:36:56','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=114',0,'revision','',0),(115,1,'2021-08-23 02:36:57','2021-08-23 02:36:57','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:36:57','2021-08-23 02:36:57','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=115',0,'revision','',0),(116,1,'2021-08-23 02:36:57','2021-08-23 02:36:57','<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=Michael%20Blake%27s%20Menswear%20Maumelle%20AR&t=m&z=10&output=embed&iwloc=near\" title=\"%3$s\" aria-label=\"%3$s\"></iframe>\n <noscript>\n Notice: JavaScript is required for this content.</noscript>\n <!-- TODO: Move to Template File. -->\n <h2>*Store visits available by appointment</h2>','Contact Us','','inherit','closed','closed','','97-revision-v1','','','2021-08-23 02:36:57','2021-08-23 02:36:57','',97,'https://michaelblakemenswear.calvarycrossag.com/?p=116',0,'revision','',0),(117,1,'2021-08-23 02:42:29','2021-08-23 02:42:29','<figure class=\'gallery-item\'>\n <img width=\"640\" height=\"554\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2.jpg 640w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2-300x260.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2-600x519.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"720\" height=\"960\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3.jpg 720w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3-225x300.jpg 225w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3-600x800.jpg 600w\" sizes=\"(max-width: 720px) 100vw, 720px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"427\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery.jpg 427w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery-200x300.jpg 200w\" sizes=\"(max-width: 427px) 100vw, 427px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"480\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6-rotated.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6-rotated.jpg 480w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"640\" height=\"428\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9.jpg 640w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9-300x201.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9-600x401.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"427\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7.jpg 427w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7-200x300.jpg 200w\" sizes=\"(max-width: 427px) 100vw, 427px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"750\" height=\"1334\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4.jpg 750w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4-169x300.jpg 169w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4-576x1024.jpg 576w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4-600x1067.jpg 600w\" sizes=\"(max-width: 750px) 100vw, 750px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"480\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5-rotated.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5-rotated.jpg 480w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"480\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1-rotated.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1-rotated.jpg 480w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n </figure>','Gallery','','publish','closed','closed','','gallery','','','2021-08-23 02:58:14','2021-08-23 02:58:14','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=117',0,'page','',0),(119,1,'2021-08-23 02:55:55','2021-08-23 02:55:55','','MichaelBlakeGallery9','','inherit','open','closed','','michaelblakegallery9','','','2021-08-23 02:55:55','2021-08-23 02:55:55','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9.jpg',0,'attachment','image/jpeg',0),(120,1,'2021-08-23 02:55:59','2021-08-23 02:55:59','','MichaelBlakeGallery7','','inherit','open','closed','','michaelblakegallery7','','','2021-08-23 02:55:59','2021-08-23 02:55:59','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7.jpg',0,'attachment','image/jpeg',0),(121,1,'2021-08-23 02:56:00','2021-08-23 02:56:00','','MichaelBlakeGallery6','','inherit','open','closed','','michaelblakegallery6','','','2021-08-23 02:56:00','2021-08-23 02:56:00','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6.jpg',0,'attachment','image/jpeg',0),(122,1,'2021-08-23 02:56:03','2021-08-23 02:56:03','','MichaelBlakeGallery5','','inherit','open','closed','','michaelblakegallery5','','','2021-08-23 02:56:03','2021-08-23 02:56:03','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5.jpg',0,'attachment','image/jpeg',0),(123,1,'2021-08-23 02:56:05','2021-08-23 02:56:05','','MichaelBlakeGallery4','','inherit','open','closed','','michaelblakegallery4','','','2021-08-23 02:56:05','2021-08-23 02:56:05','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4.jpg',0,'attachment','image/jpeg',0),(124,1,'2021-08-23 02:56:09','2021-08-23 02:56:09','','MichaelBlakeGallery3','','inherit','open','closed','','michaelblakegallery3','','','2021-08-23 02:56:09','2021-08-23 02:56:09','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3.jpg',0,'attachment','image/jpeg',0),(125,1,'2021-08-23 02:56:11','2021-08-23 02:56:11','','MichaelBlakeGallery2','','inherit','open','closed','','michaelblakegallery2','','','2021-08-23 02:56:11','2021-08-23 02:56:11','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2.jpg',0,'attachment','image/jpeg',0),(126,1,'2021-08-23 02:56:14','2021-08-23 02:56:14','','MichaelBlakeGallery1','','inherit','open','closed','','michaelblakegallery1','','','2021-08-23 02:56:14','2021-08-23 02:56:14','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1.jpg',0,'attachment','image/jpeg',0),(127,1,'2021-08-23 02:56:16','2021-08-23 02:56:16','','MichaelBlakeGallery','','inherit','open','closed','','michaelblakegallery','','','2021-08-23 02:56:16','2021-08-23 02:56:16','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery.jpg',0,'attachment','image/jpeg',0),(128,1,'2021-08-23 02:58:12','2021-08-23 02:58:12','','Gallery','','inherit','closed','closed','','117-revision-v1','','','2021-08-23 02:58:12','2021-08-23 02:58:12','',117,'https://michaelblakemenswear.calvarycrossag.com/?p=128',0,'revision','',0),(129,1,'2021-08-23 02:58:13','2021-08-23 02:58:13','','Gallery','','inherit','closed','closed','','117-revision-v1','','','2021-08-23 02:58:13','2021-08-23 02:58:13','',117,'https://michaelblakemenswear.calvarycrossag.com/?p=129',0,'revision','',0),(130,1,'2021-08-23 02:58:14','2021-08-23 02:58:14','<figure class=\'gallery-item\'>\n <img width=\"640\" height=\"554\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2.jpg 640w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2-300x260.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery2-600x519.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"720\" height=\"960\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3.jpg 720w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3-225x300.jpg 225w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery3-600x800.jpg 600w\" sizes=\"(max-width: 720px) 100vw, 720px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"427\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery.jpg 427w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery-200x300.jpg 200w\" sizes=\"(max-width: 427px) 100vw, 427px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"480\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6-rotated.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6-rotated.jpg 480w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery6-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"640\" height=\"428\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9.jpg 640w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9-300x201.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery9-600x401.jpg 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"427\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7.jpg 427w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery7-200x300.jpg 200w\" sizes=\"(max-width: 427px) 100vw, 427px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"750\" height=\"1334\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4.jpg 750w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4-169x300.jpg 169w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4-576x1024.jpg 576w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery4-600x1067.jpg 600w\" sizes=\"(max-width: 750px) 100vw, 750px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"480\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5-rotated.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5-rotated.jpg 480w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery5-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n </figure><figure class=\'gallery-item\'>\n <img width=\"480\" height=\"640\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1-rotated.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1-rotated.jpg 480w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeGallery1-225x300.jpg 225w\" sizes=\"(max-width: 480px) 100vw, 480px\" />\n </figure>','Gallery','','inherit','closed','closed','','117-revision-v1','','','2021-08-23 02:58:14','2021-08-23 02:58:14','',117,'https://michaelblakemenswear.calvarycrossag.com/?p=130',0,'revision','',0),(131,1,'2021-08-23 03:00:48','2021-08-23 03:00:48','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:00:48','2021-08-23 03:00:48','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=131',0,'revision','',0),(132,1,'2021-08-23 03:00:48','2021-08-23 03:00:48','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:00:48','2021-08-23 03:00:48','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=132',0,'revision','',0),(133,1,'2021-08-23 03:00:48','2021-08-23 03:00:48','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <ul>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:00:48','2021-08-23 03:00:48','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=133',0,'revision','',0),(135,1,'2021-08-23 03:07:09','2021-08-23 03:07:09','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <ul>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:07:09','2021-08-23 03:07:09','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=135',0,'revision','',0),(136,1,'2021-08-23 03:07:09','2021-08-23 03:07:09','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <ul>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n <li>\n <a\n href=\"https://facebook.com\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:07:09','2021-08-23 03:07:09','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=136',0,'revision','',0),(137,1,'2021-08-23 03:07:09','2021-08-23 03:07:09','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:07:09','2021-08-23 03:07:09','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=137',0,'revision','',0),(138,1,'2021-08-23 03:07:32','2021-08-23 03:07:32','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:07:32','2021-08-23 03:07:32','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=138',0,'revision','',0),(139,1,'2021-08-23 03:07:32','2021-08-23 03:07:32','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:07:32','2021-08-23 03:07:32','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=139',0,'revision','',0),(140,1,'2021-08-23 03:07:32','2021-08-23 03:07:32','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 03:07:32','2021-08-23 03:07:32','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=140',0,'revision','',0),(141,1,'2021-08-23 03:10:06','2021-08-23 03:10:06','','Default Kit','','inherit','closed','closed','','5-revision-v1','','','2021-08-23 03:10:06','2021-08-23 03:10:06','',5,'https://michaelblakemenswear.calvarycrossag.com/?p=141',0,'revision','',0),(142,1,'2021-08-23 03:10:06','2021-08-23 03:10:06','','Default Kit','','inherit','closed','closed','','5-revision-v1','','','2021-08-23 03:10:06','2021-08-23 03:10:06','',5,'https://michaelblakemenswear.calvarycrossag.com/?p=142',0,'revision','',0),(143,1,'2021-08-23 03:20:24','2021-08-23 03:20:24','','MichaelBlakeHomePageBackground','','inherit','open','closed','','michaelblakehomepagebackground','','','2021-08-23 03:20:24','2021-08-23 03:20:24','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg',0,'attachment','image/jpeg',0),(144,1,'2021-08-23 03:20:36','2021-08-23 03:20:36','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:20:36','2021-08-23 03:20:36','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=144',0,'revision','',0),(145,1,'2021-08-23 03:20:36','2021-08-23 03:20:36','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>Michael blake men\'s wear</h2> \n <h2>shop our store</h2> \n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <a href=\"#\" role=\"button\">\n Shop Womens\n </a>\n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:20:36','2021-08-23 03:20:36','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=145',0,'revision','',0),(146,1,'2021-08-23 03:20:37','2021-08-23 03:20:37','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:20:37','2021-08-23 03:20:37','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=146',0,'revision','',0),(147,1,'2021-08-23 03:21:17','2021-08-23 03:21:17','','10SecAllPair Promo','','inherit','open','closed','','10secallpair-promo','','','2021-08-23 03:21:17','2021-08-23 03:21:17','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4',0,'attachment','video/mp4',0),(148,1,'2021-08-23 03:35:33','2021-08-23 03:35:33','','joined_video_efed6b498ffd45bab37787b4c4e7cde7','','inherit','open','closed','','joined_video_efed6b498ffd45bab37787b4c4e7cde7','','','2021-08-23 03:35:33','2021-08-23 03:35:33','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4',0,'attachment','video/mp4',0),(149,1,'2021-08-23 03:36:13','2021-08-23 03:36:13','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:36:13','2021-08-23 03:36:13','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=149',0,'revision','',0),(150,1,'2021-08-23 03:36:13','2021-08-23 03:36:13','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2>','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:36:13','2021-08-23 03:36:13','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=150',0,'revision','',0),(151,1,'2021-08-23 03:36:13','2021-08-23 03:36:13','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:36:13','2021-08-23 03:36:13','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=151',0,'revision','',0),(152,1,'2021-08-23 03:37:35','2021-08-23 03:37:35','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:37:35','2021-08-23 03:37:35','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=152',0,'revision','',0),(153,1,'2021-08-23 03:37:35','2021-08-23 03:37:35','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:37:35','2021-08-23 03:37:35','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=153',0,'revision','',0),(154,1,'2021-08-23 03:37:35','2021-08-23 03:37:35','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:37:35','2021-08-23 03:37:35','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=154',0,'revision','',0),(156,1,'2021-08-23 03:38:54','2021-08-23 03:38:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:38:54','2021-08-23 03:38:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=156',0,'revision','',0),(157,1,'2021-08-23 03:38:54','2021-08-23 03:38:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:38:54','2021-08-23 03:38:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=157',0,'revision','',0),(158,1,'2021-08-23 03:38:54','2021-08-23 03:38:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:38:54','2021-08-23 03:38:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=158',0,'revision','',0),(159,1,'2021-08-23 03:40:09','2021-08-23 03:40:09','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:40:09','2021-08-23 03:40:09','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=159',0,'revision','',0),(160,1,'2021-08-23 03:40:09','2021-08-23 03:40:09','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Men\'s wear</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>The experience</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:40:09','2021-08-23 03:40:09','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=160',0,'revision','',0),(161,1,'2021-08-23 03:40:11','2021-08-23 03:40:11','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Suits</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>Accessorries</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 03:40:11','2021-08-23 03:40:11','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=161',0,'revision','',0),(168,1,'2021-08-23 04:03:36','2021-08-23 04:03:36','','MichaelBlakeEyewear','','inherit','open','closed','','michaelblakeeyewear','','','2021-08-23 04:03:36','2021-08-23 04:03:36','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeEyewear.jpg',0,'attachment','image/jpeg',0),(169,1,'2021-08-23 04:03:45','2021-08-23 04:03:45','','MichaelBlakeEyewear1','','inherit','open','closed','','michaelblakeeyewear1-2','','','2021-08-23 04:03:45','2021-08-23 04:03:45','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeEyewear1-1.jpg',0,'attachment','image/jpeg',0),(170,1,'2021-08-23 04:03:52','2021-08-23 04:03:52','','MichaelBlakeEyewear2','','inherit','open','closed','','michaelblakeeyewear2','','','2021-08-23 04:03:52','2021-08-23 04:03:52','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeEyewear2.jpg',0,'attachment','image/jpeg',0),(171,1,'2021-08-23 04:03:56','2021-08-23 04:03:56','','MichaelBlakeEyewear3','','inherit','open','closed','','michaelblakeeyewear3-2','','','2021-08-23 04:03:56','2021-08-23 04:03:56','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeEyewear3-1.jpg',0,'attachment','image/jpeg',0),(172,1,'2021-08-23 04:04:02','2021-08-23 04:04:02','','MichaelBlakeEyewear4','','inherit','open','closed','','michaelblakeeyewear4','','','2021-08-23 04:04:02','2021-08-23 04:04:02','',12,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeEyewear4.jpg',0,'attachment','image/jpeg',0),(173,1,'2021-08-23 14:51:04','2021-08-23 04:25:21',' ','','','publish','closed','closed','','173','','','2021-08-23 14:51:04','2021-08-23 14:51:04','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=173',2,'nav_menu_item','',0),(174,1,'2021-08-23 14:51:04','2021-08-23 04:25:21',' ','','','publish','closed','closed','','174','','','2021-08-23 14:51:04','2021-08-23 14:51:04','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=174',3,'nav_menu_item','',0),(176,1,'2021-08-23 04:26:28','2021-08-23 04:26:28','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 04:26:28','2021-08-23 04:26:28','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=176',0,'revision','',0),(177,1,'2021-08-23 04:26:28','2021-08-23 04:26:28','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 04:26:28','2021-08-23 04:26:28','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=177',0,'revision','',0),(178,1,'2021-08-23 04:26:28','2021-08-23 04:26:28','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-175\"><a href=\"#\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-08-23 04:26:28','2021-08-23 04:26:28','',86,'https://michaelblakemenswear.calvarycrossag.com/?p=178',0,'revision','',0),(179,1,'2021-08-23 04:56:47','2021-08-23 04:56:47','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Suits</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>Accessorries</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 04:56:47','2021-08-23 04:56:47','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=179',0,'revision','',0),(180,1,'2021-08-23 04:56:47','2021-08-23 04:56:47','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2>View Now</h2> \n <h2>Suits</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2>View Now</h2> \n <h2>Accessorries</h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 04:56:47','2021-08-23 04:56:47','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=180',0,'revision','',0),(181,1,'2021-08-23 04:56:47','2021-08-23 04:56:47','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 04:56:47','2021-08-23 04:56:47','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=181',0,'revision','',0),(183,2,'2021-08-23 14:15:44','2021-08-23 14:15:44','','Belts','<img class=\"alignnone size-medium wp-image-218\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/beits-1-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />','publish','open','closed','','monk-strap-shoes','','','2021-08-23 16:03:31','2021-08-23 16:03:31','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product&p=183',0,'product','',0),(184,2,'2021-08-23 14:13:20','2021-08-23 14:13:20','','red monk','','inherit','open','closed','','red-monk','','','2021-08-23 14:13:20','2021-08-23 14:13:20','',183,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/red-monk.jpeg',0,'attachment','image/jpeg',0),(185,2,'2021-08-23 14:13:24','2021-08-23 14:13:24','','blue monk','','inherit','open','closed','','blue-monk','','','2021-08-23 14:13:24','2021-08-23 14:13:24','',183,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/blue-monk.jpeg',0,'attachment','image/jpeg',0),(186,2,'2021-08-23 14:17:58','2021-08-23 14:17:58','','beits','','inherit','open','closed','','beits','','','2021-08-23 14:17:58','2021-08-23 14:17:58','',183,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/beits.jpeg',0,'attachment','image/jpeg',0),(187,2,'2021-08-23 14:29:13','2021-08-23 14:29:13','','IMG_0073 (1)','','inherit','open','closed','','img_0073-1','','','2021-08-23 14:29:13','2021-08-23 14:29:13','',183,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_0073-1.png',0,'attachment','image/png',0),(188,1,'2021-08-23 14:36:18','2021-08-23 14:36:18','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 14:36:18','2021-08-23 14:36:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=188',0,'revision','',0),(189,1,'2021-08-23 14:36:18','2021-08-23 14:36:18','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 14:36:18','2021-08-23 14:36:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=189',0,'revision','',0),(190,1,'2021-08-23 14:36:18','2021-08-23 14:36:18','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 14:36:18','2021-08-23 14:36:18','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=190',0,'revision','',0),(192,1,'2021-08-23 14:44:54','2021-08-23 14:44:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 14:44:54','2021-08-23 14:44:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=192',0,'revision','',0),(193,1,'2021-08-23 14:44:54','2021-08-23 14:44:54','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 14:44:54','2021-08-23 14:44:54','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=193',0,'revision','',0),(194,1,'2021-08-23 14:44:55','2021-08-23 14:44:55','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-23 14:44:55','2021-08-23 14:44:55','',12,'https://michaelblakemenswear.calvarycrossag.com/?p=194',0,'revision','',0),(195,1,'2021-08-23 14:48:18','2021-08-23 14:48:18','<img width=\"2000\" height=\"1333\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg 2000w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-300x200.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1024x682.jpg 1024w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-768x512.jpg 768w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1536x1024.jpg 1536w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-600x400.jpg 600w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" /> \n <h4>About the company</h4> \n <p>At Michael Blake Menswear our mission is to help men discover the joy of dressing, to help them define their personal style, and make it easy to access those items. To connect them with the idea that men can care about their appearance and still be masculine.</p><p> </p><p>Michael Blake </p>','About Us','','publish','closed','closed','','about-us','','','2021-08-23 14:50:12','2021-08-23 14:50:12','',0,'https://michaelblakemenswear.calvarycrossag.com/?page_id=195',0,'page','',0),(196,1,'2021-08-23 14:46:32','2021-08-23 14:46:32','','Elementor #195','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:46:32','2021-08-23 14:46:32','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=196',0,'revision','',0),(197,1,'2021-08-23 14:48:19','2021-08-23 14:48:19','','wh1.jpg','','inherit','open','closed','','wh1-jpg','','','2021-08-23 14:48:19','2021-08-23 14:48:19','',0,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/wh1.jpg',0,'attachment','image/jpeg',0),(198,1,'2021-08-23 14:49:12','2021-08-23 14:49:12','','About Us','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:49:12','2021-08-23 14:49:12','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=198',0,'revision','',0),(199,1,'2021-08-23 14:49:12','2021-08-23 14:49:12','','About Us','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:49:12','2021-08-23 14:49:12','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=199',0,'revision','',0),(200,1,'2021-08-23 14:49:12','2021-08-23 14:49:12','<img width=\"2000\" height=\"1333\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg 2000w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-300x200.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1024x682.jpg 1024w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-768x512.jpg 768w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1536x1024.jpg 1536w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-600x400.jpg 600w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" /> \n <h4>About the company</h4> \n <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop</p>','About Us','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:49:12','2021-08-23 14:49:12','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=200',0,'revision','',0),(201,1,'2021-08-23 14:50:11','2021-08-23 14:50:11','<img width=\"2000\" height=\"1333\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg 2000w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-300x200.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1024x682.jpg 1024w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-768x512.jpg 768w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1536x1024.jpg 1536w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-600x400.jpg 600w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" /> \n <h4>About the company</h4> \n <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop</p>','About Us','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:50:11','2021-08-23 14:50:11','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=201',0,'revision','',0),(202,1,'2021-08-23 14:50:11','2021-08-23 14:50:11','<img width=\"2000\" height=\"1333\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg 2000w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-300x200.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1024x682.jpg 1024w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-768x512.jpg 768w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1536x1024.jpg 1536w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-600x400.jpg 600w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" /> \n <h4>About the company</h4> \n <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop</p>','About Us','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:50:11','2021-08-23 14:50:11','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=202',0,'revision','',0),(203,1,'2021-08-23 14:50:12','2021-08-23 14:50:12','<img width=\"2000\" height=\"1333\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground.jpg 2000w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-300x200.jpg 300w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1024x682.jpg 1024w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-768x512.jpg 768w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-1536x1024.jpg 1536w, https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeHomePageBackground-600x400.jpg 600w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" /> \n <h4>About the company</h4> \n <p>At Michael Blake Menswear our mission is to help men discover the joy of dressing, to help them define their personal style, and make it easy to access those items. To connect them with the idea that men can care about their appearance and still be masculine.</p><p> </p><p>Michael Blake </p>','About Us','','inherit','closed','closed','','195-revision-v1','','','2021-08-23 14:50:12','2021-08-23 14:50:12','',195,'https://michaelblakemenswear.calvarycrossag.com/?p=203',0,'revision','',0),(204,1,'2021-08-23 14:51:04','2021-08-23 14:51:04',' ','','','publish','closed','closed','','204','','','2021-08-23 14:51:04','2021-08-23 14:51:04','',0,'https://michaelblakemenswear.calvarycrossag.com/?p=204',1,'nav_menu_item','',0),(205,2,'2021-08-23 15:36:18','0000-00-00 00:00:00','','Elementor Landing Page #205','','draft','open','open','','','','','2021-08-23 15:36:18','2021-08-23 15:36:18','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=e-landing-page&p=205',0,'e-landing-page','',0),(206,2,'2021-08-23 15:36:17','2021-08-23 15:36:17','','Elementor Landing Page #205','','inherit','closed','closed','','205-revision-v1','','','2021-08-23 15:36:17','2021-08-23 15:36:17','',205,'https://michaelblakemenswear.calvarycrossag.com/?p=206',0,'revision','',0),(207,2,'2021-08-23 15:36:17','2021-08-23 15:36:17','','Elementor Landing Page #205','','inherit','closed','closed','','205-revision-v1','','','2021-08-23 15:36:17','2021-08-23 15:36:17','',205,'https://michaelblakemenswear.calvarycrossag.com/?p=207',0,'revision','',0),(208,2,'2021-08-23 15:36:18','2021-08-23 15:36:18','','Elementor Landing Page #205','','inherit','closed','closed','','205-revision-v1','','','2021-08-23 15:36:18','2021-08-23 15:36:18','',205,'https://michaelblakemenswear.calvarycrossag.com/?p=208',0,'revision','',0),(210,2,'2021-08-23 15:46:05','2021-08-23 15:46:05','<img class=\"alignnone size-medium wp-image-184\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/red-monk-240x300.jpeg\" alt=\"\" width=\"240\" height=\"300\" /><img class=\"alignnone size-medium wp-image-216\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms148-3-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-215\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms154-3-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-214\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms147-3-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-213\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms138-3-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-212\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/loafer153-3-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-211\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms152-3-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />','Monk Straps','','publish','open','closed','','monk-straps','','','2021-08-23 15:52:01','2021-08-23 15:52:01','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product&p=210',0,'product','',0),(211,2,'2021-08-23 15:43:35','2021-08-23 15:43:35','','ms152-3','','inherit','open','closed','','ms152-3','','','2021-08-23 15:43:35','2021-08-23 15:43:35','',210,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms152-3.png',0,'attachment','image/png',0),(212,2,'2021-08-23 15:43:48','2021-08-23 15:43:48','','loafer153-3','','inherit','open','closed','','loafer153-3','','','2021-08-23 15:43:48','2021-08-23 15:43:48','',210,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/loafer153-3.png',0,'attachment','image/png',0),(213,2,'2021-08-23 15:43:57','2021-08-23 15:43:57','','ms138-3','','inherit','open','closed','','ms138-3','','','2021-08-23 15:43:57','2021-08-23 15:43:57','',210,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms138-3.png',0,'attachment','image/png',0),(214,2,'2021-08-23 15:44:05','2021-08-23 15:44:05','','ms147-3','','inherit','open','closed','','ms147-3','','','2021-08-23 15:44:05','2021-08-23 15:44:05','',210,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms147-3.png',0,'attachment','image/png',0),(215,2,'2021-08-23 15:44:20','2021-08-23 15:44:20','','ms154-3','','inherit','open','closed','','ms154-3','','','2021-08-23 15:44:20','2021-08-23 15:44:20','',210,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms154-3.png',0,'attachment','image/png',0),(216,2,'2021-08-23 15:44:38','2021-08-23 15:44:38','','ms148-3','','inherit','open','closed','','ms148-3','','','2021-08-23 15:44:38','2021-08-23 15:44:38','',210,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/ms148-3.png',0,'attachment','image/png',0),(217,2,'2021-08-23 16:03:27','2021-08-23 16:03:27','','Belts','','inherit','closed','closed','','183-autosave-v1','','','2021-08-23 16:03:27','2021-08-23 16:03:27','',183,'https://michaelblakemenswear.calvarycrossag.com/?p=217',0,'revision','',0),(218,2,'2021-08-23 16:02:38','2021-08-23 16:02:38','','beits (1)','','inherit','open','closed','','beits-1','','','2021-08-23 16:02:38','2021-08-23 16:02:38','',183,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/beits-1.png',0,'attachment','image/png',0),(220,2,'2021-08-23 16:16:28','0000-00-00 00:00:00','<img class=\"alignnone size-medium wp-image-221\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_2490-225x300.png\" alt=\"\" width=\"225\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-222\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_1085-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-223\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_1084-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-224\" src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_1086-300x200.png\" alt=\"\" width=\"300\" height=\"200\" />','Travel Bags','','draft','open','closed','','','','','2021-08-23 16:16:28','2021-08-23 16:16:28','',0,'https://michaelblakemenswear.calvarycrossag.com/?post_type=product&p=220',0,'product','',0),(221,2,'2021-08-23 16:15:39','2021-08-23 16:15:39','','IMG_2490','','inherit','open','closed','','img_2490','','','2021-08-23 16:15:39','2021-08-23 16:15:39','',220,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_2490.png',0,'attachment','image/png',0),(222,2,'2021-08-23 16:15:48','2021-08-23 16:15:48','','IMG_1085','','inherit','open','closed','','img_1085','','','2021-08-23 16:15:48','2021-08-23 16:15:48','',220,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_1085.png',0,'attachment','image/png',0),(223,2,'2021-08-23 16:15:55','2021-08-23 16:15:55','','IMG_1084','','inherit','open','closed','','img_1084','','','2021-08-23 16:15:55','2021-08-23 16:15:55','',220,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_1084.png',0,'attachment','image/png',0),(224,2,'2021-08-23 16:16:03','2021-08-23 16:16:03','','IMG_1086','','inherit','open','closed','','img_1086','','','2021-08-23 16:16:03','2021-08-23 16:16:03','',220,'https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/IMG_1086.png',0,'attachment','image/png',0),(226,1,'2021-08-30 01:44:29','2021-08-24 02:24:35','','Shoes','','publish','closed','closed','','shoes','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.com/?p=226',9,'nav_menu_item','',0),(227,1,'2021-08-30 01:44:29','2021-08-24 02:24:35','','Fragrances','','publish','closed','closed','','fragrances','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.com/?p=227',7,'nav_menu_item','',0),(228,1,'2021-08-30 01:44:29','2021-08-24 02:24:35','','Bags','','publish','closed','closed','','bags','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.com/?p=228',5,'nav_menu_item','',0),(229,1,'2021-08-30 01:44:29','2021-08-24 02:24:35','','Eyewear','','publish','closed','closed','','eyewear','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.com/?p=229',6,'nav_menu_item','',0),(230,1,'2021-08-24 02:26:48','2021-08-24 02:26:48','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:26:48','2021-08-24 02:26:48','',12,'https://michaelblakemenswear.com/?p=230',0,'revision','',0),(231,1,'2021-08-24 02:26:49','2021-08-24 02:26:49','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:26:49','2021-08-24 02:26:49','',12,'https://michaelblakemenswear.com/?p=231',0,'revision','',0),(232,1,'2021-08-24 02:26:49','2021-08-24 02:26:49','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:26:49','2021-08-24 02:26:49','',12,'https://michaelblakemenswear.com/?p=232',0,'revision','',0),(233,1,'2021-08-24 02:27:41','2021-08-24 02:27:41','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:27:41','2021-08-24 02:27:41','',12,'https://michaelblakemenswear.com/?p=233',0,'revision','',0),(234,1,'2021-08-24 02:27:41','2021-08-24 02:27:41','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:27:41','2021-08-24 02:27:41','',12,'https://michaelblakemenswear.com/?p=234',0,'revision','',0),(235,1,'2021-08-24 02:27:41','2021-08-24 02:27:41','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:27:41','2021-08-24 02:27:41','',12,'https://michaelblakemenswear.com/?p=235',0,'revision','',0),(236,1,'2021-08-24 02:29:12','2021-08-24 02:29:12','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:29:12','2021-08-24 02:29:12','',12,'https://michaelblakemenswear.com/?p=236',0,'revision','',0),(237,1,'2021-08-24 02:29:12','2021-08-24 02:29:12','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:29:12','2021-08-24 02:29:12','',12,'https://michaelblakemenswear.com/?p=237',0,'revision','',0),(238,1,'2021-08-24 02:29:12','2021-08-24 02:29:12','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:29:12','2021-08-24 02:29:12','',12,'https://michaelblakemenswear.com/?p=238',0,'revision','',0),(239,1,'2021-08-24 02:51:06','2021-08-24 02:51:06','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:51:06','2021-08-24 02:51:06','',12,'https://michaelblakemenswear.com/?p=239',0,'revision','',0),(240,1,'2021-08-24 02:51:06','2021-08-24 02:51:06','<h2>View Now</h2> \n <h2>Casual wear</h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.calvarycrossag.com/product-category/accessories/\">Accessorries</a></h2> \n <h2>View Now</h2> \n <h2>about us</h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:51:06','2021-08-24 02:51:06','',12,'https://michaelblakemenswear.com/?p=240',0,'revision','',0),(241,1,'2021-08-24 02:51:07','2021-08-24 02:51:07','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:51:07','2021-08-24 02:51:07','',12,'https://michaelblakemenswear.com/?p=241',0,'revision','',0),(242,1,'2021-08-24 02:52:55','2021-08-24 02:52:55','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:52:55','2021-08-24 02:52:55','',12,'https://michaelblakemenswear.com/?p=242',0,'revision','',0),(243,1,'2021-08-24 02:52:55','2021-08-24 02:52:55','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:52:55','2021-08-24 02:52:55','',12,'https://michaelblakemenswear.com/?p=243',0,'revision','',0),(244,1,'2021-08-24 02:52:55','2021-08-24 02:52:55','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-24 02:52:55','2021-08-24 02:52:55','',12,'https://michaelblakemenswear.com/?p=244',0,'revision','',0),(245,1,'2021-08-24 02:54:59','2021-08-24 02:54:59','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a href=\"#\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"#\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"#\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-39\"><a href=\"#\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a href=\"#\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:54:59','2021-08-24 02:54:59','',28,'https://michaelblakemenswear.com/?p=245',0,'revision','',0),(246,1,'2021-08-24 02:54:59','2021-08-24 02:54:59','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.calvarycrossag.com\">\n <img src=\"https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/home-page/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a href=\"#\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"#\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"#\" class = \"hfe-menu-item\">Accessories</a></li>\n<li id=\"menu-item-39\"><a href=\"#\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a href=\"#\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.calvarycrossag.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.calvarycrossag.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:54:59','2021-08-24 02:54:59','',28,'https://michaelblakemenswear.com/?p=246',0,'revision','',0),(247,1,'2021-08-24 02:54:59','2021-08-24 02:54:59','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:54:59','2021-08-24 02:54:59','',28,'https://michaelblakemenswear.com/?p=247',0,'revision','',0),(248,1,'2021-08-24 02:59:11','2021-08-24 02:59:11','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:11','2021-08-24 02:59:11','',28,'https://michaelblakemenswear.com/?p=248',0,'revision','',0),(249,1,'2021-08-24 02:59:11','2021-08-24 02:59:11','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:11','2021-08-24 02:59:11','',28,'https://michaelblakemenswear.com/?p=249',0,'revision','',0),(250,1,'2021-08-24 02:59:11','2021-08-24 02:59:11','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:11','2021-08-24 02:59:11','',28,'https://michaelblakemenswear.com/?p=250',0,'revision','',0),(251,1,'2021-08-24 02:59:24','2021-08-24 02:59:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:24','2021-08-24 02:59:24','',28,'https://michaelblakemenswear.com/?p=251',0,'revision','',0),(252,1,'2021-08-24 02:59:24','2021-08-24 02:59:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:24','2021-08-24 02:59:24','',28,'https://michaelblakemenswear.com/?p=252',0,'revision','',0),(253,1,'2021-08-24 02:59:25','2021-08-24 02:59:25','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:25','2021-08-24 02:59:25','',28,'https://michaelblakemenswear.com/?p=253',0,'revision','',0),(254,1,'2021-08-24 02:59:46','2021-08-24 02:59:46','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:46','2021-08-24 02:59:46','',28,'https://michaelblakemenswear.com/?p=254',0,'revision','',0),(255,1,'2021-08-24 02:59:46','2021-08-24 02:59:46','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:46','2021-08-24 02:59:46','',28,'https://michaelblakemenswear.com/?p=255',0,'revision','',0),(256,1,'2021-08-24 02:59:46','2021-08-24 02:59:46','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 02:59:46','2021-08-24 02:59:46','',28,'https://michaelblakemenswear.com/?p=256',0,'revision','',0),(258,1,'2021-08-24 03:00:24','2021-08-24 03:00:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 03:00:24','2021-08-24 03:00:24','',28,'https://michaelblakemenswear.com/?p=258',0,'revision','',0),(259,1,'2021-08-24 03:00:24','2021-08-24 03:00:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 03:00:24','2021-08-24 03:00:24','',28,'https://michaelblakemenswear.com/?p=259',0,'revision','',0),(260,1,'2021-08-24 03:00:24','2021-08-24 03:00:24','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-24 03:00:24','2021-08-24 03:00:24','',28,'https://michaelblakemenswear.com/?p=260',0,'revision','',0),(261,0,'2021-08-24 13:43:15','2021-08-24 13:43:15','','','','publish','closed','closed','','261','','','2021-08-24 13:43:15','2021-08-24 13:43:15','',0,'https://michaelblakemenswear.com/nf_sub/261/',0,'nf_sub','',0),(262,2,'2021-08-24 14:49:45','2021-08-24 14:49:45','A Collection Of Eyewear That\'s Classic, Comfortable, And Stylish. As With A perfectly Tailored Suit That Flatters The Body Sunglasses Can Compliment Your Face. Each Style Has Been Affectionately Named For One Of Our favorite Caribbean Islands Where The Sand Is Soft And The Sun Is Bright!.St Thomas, St Maarten, Grand Cayman, And Nassau Each Pair Comes With A Pouch And A Dust Cloth. ','EYEWEAR','','publish','open','closed','','eyewear','','','2021-09-20 15:53:09','2021-09-20 15:53:09','',0,'https://michaelblakemenswear.com/?post_type=product&p=262',0,'product','',0),(263,2,'2021-08-24 14:44:18','2021-08-24 14:44:18','','DSC_0375','','inherit','open','closed','','dsc_0375','','','2021-08-24 14:44:18','2021-08-24 14:44:18','',262,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/DSC_0375.png',0,'attachment','image/png',0),(264,2,'2021-08-24 14:44:29','2021-08-24 14:44:29','','DSC_0381','','inherit','open','closed','','dsc_0381','','','2021-08-24 14:44:29','2021-08-24 14:44:29','',262,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/DSC_0381.png',0,'attachment','image/png',0),(265,2,'2021-08-24 14:44:39','2021-08-24 14:44:39','','DSC_0386','','inherit','open','closed','','dsc_0386','','','2021-08-24 14:44:39','2021-08-24 14:44:39','',262,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/DSC_0386.png',0,'attachment','image/png',0),(266,2,'2021-08-24 14:44:53','2021-08-24 14:44:53','','DSC_0388','','inherit','open','closed','','dsc_0388','','','2021-08-24 14:44:53','2021-08-24 14:44:53','',262,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/DSC_0388.png',0,'attachment','image/png',0),(267,2,'2021-08-24 14:45:06','2021-08-24 14:45:06','','IMG_2575','','inherit','open','closed','','img_2575','','','2021-08-24 14:45:06','2021-08-24 14:45:06','',262,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_2575.png',0,'attachment','image/png',0),(268,2,'2021-08-24 14:48:39','2021-08-24 14:48:39','','2G5A9747','','inherit','open','closed','','2g5a9747','','','2021-08-24 14:48:39','2021-08-24 14:48:39','',262,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A9747.png',0,'attachment','image/png',0),(269,2,'2021-08-24 14:58:48','2021-08-24 14:58:48',' \r\n\r\nWeekend Getaway? We\'ve Got Your Bag! Crafted From Full Grain Leather, Brass Hardware, Detachable Leather Strap\r\n\r\nL 21\"-H 10\"-W 9.5\"\r\n\r\n ','BAGS','However you travel your accessories should reflect your personal style, a great weekend bag gives your look an added touch','publish','open','closed','','bags','','','2021-09-05 19:06:47','2021-09-05 19:06:47','',0,'https://michaelblakemenswear.com/?post_type=product&p=269',0,'product','',0),(270,2,'2021-08-24 14:56:37','2021-08-24 14:56:37','','canvas bag 1','','inherit','open','closed','','canvas-bag-1','','','2021-08-24 14:56:37','2021-08-24 14:56:37','',269,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/canvas-bag-1.png',0,'attachment','image/png',0),(271,2,'2021-08-24 14:56:45','2021-08-24 14:56:45','','canvas bag 2','','inherit','open','closed','','canvas-bag-2','','','2021-08-24 14:56:45','2021-08-24 14:56:45','',269,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/canvas-bag-2.png',0,'attachment','image/png',0),(272,2,'2021-08-24 14:56:55','2021-08-24 14:56:55','','canvas bag 3','','inherit','open','closed','','canvas-bag-3','','','2021-08-24 14:56:55','2021-08-24 14:56:55','',269,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/canvas-bag-3.png',0,'attachment','image/png',0),(273,2,'2021-08-24 14:58:29','2021-08-24 14:58:29','','IMG_2490 (1)','','inherit','open','closed','','img_2490-1','','','2021-08-24 14:58:29','2021-08-24 14:58:29','',269,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_2490-1.png',0,'attachment','image/png',0),(274,2,'2021-09-05 19:08:21','2021-09-05 19:08:21',' \n\nWeekend Getaway? We\'ve Got Your Bag! Crafted From Full Grain Leather, Brass Hardware, Detachable Leather Strap\n\nL 21\"-H 10\"-W 9.5\"\n\n ','BAGS','<p>However you travel your accessories should reflect your personal style, a great weekend bag gives your look an added touch</p>','inherit','closed','closed','','269-autosave-v1','','','2021-09-05 19:08:21','2021-09-05 19:08:21','',269,'https://michaelblakemenswear.com/?p=274',0,'revision','',0),(275,2,'2021-08-24 15:28:51','2021-08-24 15:28:51','<p style=\"text-align: center;\">CLASSIC</p>\r\n<p style=\"text-align: center;\">Top Notes</p>\r\n<p style=\"text-align: center;\">Black Currant, Apple, Pineapple , Bergamot</p>\r\n<p style=\"text-align: center;\">Heart</p>\r\n<p style=\"text-align: center;\">Rose, Dry Birch, Moroccan Jasmine, Patchouli</p>\r\n<p style=\"text-align: center;\">Base</p>\r\n<p style=\"text-align: center;\">Ambergris, Musk, Oak Moss, Vanilla</p>','Classic Fragrance','<img class=\"alignnone size-medium wp-image-279\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_1160-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />','publish','open','closed','','fragrances','','','2021-08-24 15:42:26','2021-08-24 15:42:26','',0,'https://michaelblakemenswear.com/?post_type=product&p=275',0,'product','',0),(276,2,'2021-08-24 15:19:25','2021-08-24 15:19:25','','IMG_1157','','inherit','open','closed','','img_1157','','','2021-08-24 15:19:25','2021-08-24 15:19:25','',275,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_1157.png',0,'attachment','image/png',0),(277,2,'2021-08-24 15:19:33','2021-08-24 15:19:33','','IMG_1158','','inherit','open','closed','','img_1158','','','2021-08-24 15:19:33','2021-08-24 15:19:33','',275,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_1158.png',0,'attachment','image/png',0),(278,2,'2021-08-24 15:19:46','2021-08-24 15:19:46','','IMG_1159','','inherit','open','closed','','img_1159','','','2021-08-24 15:19:46','2021-08-24 15:19:46','',275,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_1159.png',0,'attachment','image/png',0),(279,2,'2021-08-24 15:19:57','2021-08-24 15:19:57','','IMG_1160','CLASSIC FRAGRANCE','inherit','open','closed','','img_1160','','','2021-11-17 16:49:22','2021-11-17 16:49:22','',275,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_1160.png',0,'attachment','image/png',0),(280,2,'2021-08-24 15:32:52','2021-08-24 15:32:52','<p style=\"text-align: center;\">Top</p>\r\n<p style=\"text-align: center;\">Cardamom, Bergamot</p>\r\n<p style=\"text-align: center;\">Middle</p>\r\n<p style=\"text-align: center;\">Lavender, Cedar</p>\r\n<p style=\"text-align: center;\">Base</p>\r\n<p style=\"text-align: center;\">Cumin, Vetiver</p>','Signature fragrance','<img class=\"alignnone size-medium wp-image-276\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/IMG_1157-236x300.png\" alt=\"\" width=\"236\" height=\"300\" />','publish','open','closed','','signature-fragrance','','','2021-08-24 15:32:53','2021-08-24 15:32:53','',0,'https://michaelblakemenswear.com/?post_type=product&p=280',0,'product','',0),(282,2,'2021-08-24 15:47:25','0000-00-00 00:00:00','','Elementor Landing Page #282','','draft','open','open','','','','','2021-08-24 15:47:25','2021-08-24 15:47:25','',0,'https://michaelblakemenswear.com/?post_type=e-landing-page&p=282',0,'e-landing-page','',0),(283,2,'2021-08-24 15:47:24','2021-08-24 15:47:24','','Elementor Landing Page #282','','inherit','closed','closed','','282-revision-v1','','','2021-08-24 15:47:24','2021-08-24 15:47:24','',282,'https://michaelblakemenswear.com/?p=283',0,'revision','',0),(284,2,'2021-08-24 15:47:24','2021-08-24 15:47:24','','Elementor Landing Page #282','','inherit','closed','closed','','282-revision-v1','','','2021-08-24 15:47:24','2021-08-24 15:47:24','',282,'https://michaelblakemenswear.com/?p=284',0,'revision','',0),(285,2,'2021-08-24 15:47:25','2021-08-24 15:47:25','','Elementor Landing Page #282','','inherit','closed','closed','','282-revision-v1','','','2021-08-24 15:47:25','2021-08-24 15:47:25','',282,'https://michaelblakemenswear.com/?p=285',0,'revision','',0),(286,2,'2021-08-24 15:51:08','2021-08-24 15:51:08','','MB Initials (No Tag Line)','','inherit','open','closed','','mb-initials-no-tag-line','','','2021-08-24 15:51:08','2021-08-24 15:51:08','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/MB-Initials-No-Tag-Line.png',0,'attachment','image/png',0),(287,2,'2021-08-24 15:51:46','2021-08-24 15:51:46','https://michaelblakemenswear.com/wp-content/uploads/2021/08/cropped-MB-Initials-No-Tag-Line.png','cropped-MB-Initials-No-Tag-Line.png','','inherit','open','closed','','cropped-mb-initials-no-tag-line-png','','','2021-08-24 15:51:46','2021-08-24 15:51:46','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/cropped-MB-Initials-No-Tag-Line.png',0,'attachment','image/png',0),(289,2,'2021-08-25 14:00:09','2021-08-25 14:00:09','Our 4 piece grooming essentials include a moisturizer that could double as an after shave, a pre shave beard oil, conditioning shave cream, and a cleanser. All with a fresh, riveting fusion of Citrus, Green Tea, Black Currant.','GROOMING','','publish','open','closed','','grooming','','','2021-08-25 14:40:37','2021-08-25 14:40:37','',0,'https://michaelblakemenswear.com/?post_type=product&p=289',0,'product','',0),(290,2,'2021-08-25 13:54:06','2021-08-25 13:54:06','','2G5A5502','','inherit','open','closed','','2g5a5502','','','2021-08-25 13:54:06','2021-08-25 13:54:06','',289,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5502.png',0,'attachment','image/png',0),(291,2,'2021-08-25 13:54:23','2021-08-25 13:54:23','','2G5A5525','','inherit','open','closed','','2g5a5525','','','2021-08-25 13:54:23','2021-08-25 13:54:23','',289,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5525.jpg',0,'attachment','image/jpeg',0),(292,2,'2021-08-25 13:55:17','2021-08-25 13:55:17','','2G5A5527','','inherit','open','closed','','2g5a5527','','','2021-08-25 13:55:17','2021-08-25 13:55:17','',289,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5527.jpg',0,'attachment','image/jpeg',0),(293,2,'2021-08-25 13:56:40','2021-08-25 13:56:40','','2G5A5529','','inherit','open','closed','','2g5a5529','','','2021-08-25 13:56:40','2021-08-25 13:56:40','',289,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5529.jpg',0,'attachment','image/jpeg',0),(294,2,'2021-08-25 13:57:33','2021-08-25 13:57:33','','2G5A5530 copy','','inherit','open','closed','','2g5a5530-copy','','','2021-08-25 13:57:33','2021-08-25 13:57:33','',289,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5530-copy.jpg',0,'attachment','image/jpeg',0),(295,2,'2021-08-25 14:07:07','2021-08-25 14:07:07','A creamy, rich and cooling cream formulated to help soften the beard for a close comfortable shave. Combine with our pre shave oil for a better shave experience.','Shave Cream','<img class=\"alignnone size-medium wp-image-294\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5530-copy-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />','publish','open','closed','','shave-cream','','','2021-08-25 14:08:04','2021-08-25 14:08:04','',0,'https://michaelblakemenswear.com/?post_type=product&p=295',0,'product','',0),(296,2,'2021-08-25 14:15:02','2021-08-25 14:15:02','The secret to the ultimate shave is in preparing the skin. This lightweight blend of botanical oils such as Macadamia Nut, Tamanu, Avocado and Noni help protect the skin and soften the beard which allows the razor to get an even closer, more comfortable shave. No pulling or irritating the skin. Best when used daily prior to wet or dry shaving.','Pre Shave Oil','<img class=\"alignnone size-medium wp-image-292\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5527.jpg\" alt=\"\" width=\"1\" height=\"1\" /><img class=\"alignnone size-medium wp-image-292\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5527.jpg\" alt=\"\" width=\"1\" height=\"1\" />','publish','open','closed','','pre-shave-oil','','','2021-08-25 14:15:03','2021-08-25 14:15:03','',0,'https://michaelblakemenswear.com/?post_type=product&p=296',0,'product','',0),(298,2,'2021-08-25 14:20:30','2021-08-25 14:20:30','Superior day time moisturizer - pH balanced for all skin types. Tones, conditions and moisturizes with all the natural benefits of organic Aloe Vera, Jojoba Oil and Shea Butter. Infused with Witch Hazel and Green Tea, this creme also doubles as an excellent after shave balm.','Moisturiser','','publish','open','closed','','moisturiser','','','2021-08-25 14:20:30','2021-08-25 14:20:30','',0,'https://michaelblakemenswear.com/?post_type=product&p=298',0,'product','',0),(299,2,'2021-08-25 14:30:29','2021-08-25 14:30:29','Glycolic acid gently improves the texture of the skin and aids the skin in its natural renewal process. This cleanser diminishes the appearance of fine lines and brightens the skin. Jojoba beads gently remove dead skin, while plant extracts nourish skin and plant oils boost moisture. MSM promotes elasticity and prevents damage caused by dryness while salicylic acid and glycolic acid help alleviate problematic blemish-prone conditions. Our natural cleanser is a great way to begin an anti-aging skin care regimen.','Cleanser','<img class=\"alignnone size-medium wp-image-291\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5525-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />','publish','open','closed','','cleanser','','','2021-08-25 14:30:30','2021-08-25 14:30:30','',0,'https://michaelblakemenswear.com/?post_type=product&p=299',0,'product','',0),(300,2,'2021-08-25 14:39:50','2021-08-25 14:39:50','Our 4 piece grooming essentials include a moisturizer that could double as an after shave, a pre shave beard oil, conditioning shave cream, and a cleanser. All with a fresh, riveting fusion of Citrus, Green Tea, Black Currant.','GROOMING','','inherit','closed','closed','','289-autosave-v1','','','2021-08-25 14:39:50','2021-08-25 14:39:50','',289,'https://michaelblakemenswear.com/?p=300',0,'revision','',0),(308,2,'2021-08-25 14:57:14','2021-08-25 14:57:14','','2G5A5502','','inherit','open','closed','','2g5a5502-2','','','2021-08-25 14:57:14','2021-08-25 14:57:14','',56,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A5502-1.png',0,'attachment','image/png',0),(310,2,'2021-08-25 14:57:51','2021-08-25 14:57:51','','4dccbdcc-38f7-4cc1-8726-30acca58b5a1','','inherit','open','closed','','4dccbdcc-38f7-4cc1-8726-30acca58b5a1','','','2021-08-25 14:57:51','2021-08-25 14:57:51','',56,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/4dccbdcc-38f7-4cc1-8726-30acca58b5a1.png',0,'attachment','image/png',0),(312,1,'2021-08-25 18:43:06','2021-08-25 18:43:06','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-25 18:43:06','2021-08-25 18:43:06','',12,'https://michaelblakemenswear.com/?p=312',0,'revision','',0),(313,1,'2021-08-25 18:43:06','2021-08-25 18:43:06','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-25 18:43:06','2021-08-25 18:43:06','',12,'https://michaelblakemenswear.com/?p=313',0,'revision','',0),(314,1,'2021-08-25 18:43:07','2021-08-25 18:43:07','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-25 18:43:07','2021-08-25 18:43:07','',12,'https://michaelblakemenswear.com/?p=314',0,'revision','',0),(315,2,'2021-08-26 00:57:07','2021-08-26 00:57:07','','7S8A5730 (1)','Formal Wear Destination','inherit','open','closed','','7s8a5730-1','','','2022-01-11 16:26:21','2022-01-11 16:26:21','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/7S8A5730-1.jpg',0,'attachment','image/jpeg',0),(317,2,'2021-08-26 16:16:44','2021-08-26 16:16:44','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-26 16:16:44','2021-08-26 16:16:44','',12,'https://michaelblakemenswear.com/?p=317',0,'revision','',0),(318,2,'2021-08-26 16:16:44','2021-08-26 16:16:44','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">Casual wear</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-26 16:16:44','2021-08-26 16:16:44','',12,'https://michaelblakemenswear.com/?p=318',0,'revision','',0),(319,2,'2021-08-26 16:16:44','2021-08-26 16:16:44','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-26 16:16:44','2021-08-26 16:16:44','',12,'https://michaelblakemenswear.com/?p=319',0,'revision','',0),(320,1,'2021-08-26 23:58:02','2021-08-26 23:58:02','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-26 23:58:02','2021-08-26 23:58:02','',28,'https://michaelblakemenswear.com/?p=320',0,'revision','',0),(321,1,'2021-08-26 23:58:02','2021-08-26 23:58:02','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-26 23:58:02','2021-08-26 23:58:02','',28,'https://michaelblakemenswear.com/?p=321',0,'revision','',0),(322,1,'2021-08-26 23:58:02','2021-08-26 23:58:02','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 2 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-26 23:58:02','2021-08-26 23:58:02','',28,'https://michaelblakemenswear.com/?p=322',0,'revision','',0),(324,1,'2021-08-30 01:22:03','2021-08-30 01:22:03','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-30 01:22:03','2021-08-30 01:22:03','',12,'https://michaelblakemenswear.com/?p=324',0,'revision','',0),(325,1,'2021-08-30 01:22:03','2021-08-30 01:22:03','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-30 01:22:03','2021-08-30 01:22:03','',12,'https://michaelblakemenswear.com/?p=325',0,'revision','',0),(326,1,'2021-08-30 01:22:03','2021-08-30 01:22:03','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-30 01:22:03','2021-08-30 01:22:03','',12,'https://michaelblakemenswear.com/?p=326',0,'revision','',0),(327,1,'2021-08-30 01:25:48','2021-08-30 01:25:48','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 2 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-30 01:25:48','2021-08-30 01:25:48','',28,'https://michaelblakemenswear.com/?p=327',0,'revision','',0),(328,1,'2021-08-30 01:25:48','2021-08-30 01:25:48','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 2 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-30 01:25:48','2021-08-30 01:25:48','',28,'https://michaelblakemenswear.com/?p=328',0,'revision','',0),(329,1,'2021-08-30 01:25:48','2021-08-30 01:25:48','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 2 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-08-30 01:25:48','2021-08-30 01:25:48','',28,'https://michaelblakemenswear.com/?p=329',0,'revision','',0),(330,1,'2021-08-30 01:44:29','2021-08-30 01:44:29','','Grooming','','publish','closed','closed','','grooming','','','2021-08-30 01:44:29','2021-08-30 01:44:29','',0,'https://michaelblakemenswear.com/?p=330',8,'nav_menu_item','',0),(331,2,'2021-08-31 20:55:17','2021-08-31 20:55:17','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:55:17','2021-08-31 20:55:17','',12,'https://michaelblakemenswear.com/?p=331',0,'revision','',0),(332,2,'2021-08-31 20:55:17','2021-08-31 20:55:17','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessorries</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:55:17','2021-08-31 20:55:17','',12,'https://michaelblakemenswear.com/?p=332',0,'revision','',0),(333,2,'2021-08-31 20:55:17','2021-08-31 20:55:17','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:55:17','2021-08-31 20:55:17','',12,'https://michaelblakemenswear.com/?p=333',0,'revision','',0),(334,2,'2021-08-31 20:56:02','2021-08-31 20:56:02','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:56:02','2021-08-31 20:56:02','',12,'https://michaelblakemenswear.com/?p=334',0,'revision','',0),(335,2,'2021-08-31 20:56:02','2021-08-31 20:56:02','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:56:02','2021-08-31 20:56:02','',12,'https://michaelblakemenswear.com/?p=335',0,'revision','',0),(336,2,'2021-08-31 20:56:03','2021-08-31 20:56:03','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:56:03','2021-08-31 20:56:03','',12,'https://michaelblakemenswear.com/?p=336',0,'revision','',0),(337,2,'2021-08-31 20:59:18','2021-08-31 20:59:18','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:59:18','2021-08-31 20:59:18','',12,'https://michaelblakemenswear.com/?p=337',0,'revision','',0),(338,2,'2021-08-31 20:59:19','2021-08-31 20:59:19','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:59:19','2021-08-31 20:59:19','',12,'https://michaelblakemenswear.com/?p=338',0,'revision','',0),(339,2,'2021-08-31 20:59:21','2021-08-31 20:59:21','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-08-31 20:59:21','2021-08-31 20:59:21','',12,'https://michaelblakemenswear.com/?p=339',0,'revision','',0),(341,2,'2021-09-02 15:01:10','2021-09-02 15:01:10','It\'s cut from lamb suede, topped with color-matched ribbing and fully lined. The front pockets have pleats to allow extra room for your phone and wallet. Our version of the iconic bomber worn by aviators. Tailored for a modern fit.','Suede Bomber','<img class=\"alignnone size-medium wp-image-374\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/suede-pocket-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-375\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/Suede-bottom-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','publish','open','closed','','suede-bomber','','','2021-12-08 16:24:47','2021-12-08 16:24:47','',0,'https://michaelblakemenswear.com/?post_type=product&p=341',0,'product','',0),(342,2,'2021-09-01 14:10:52','2021-09-01 14:10:52','','2G5A1626','','inherit','open','closed','','2g5a1626','','','2021-09-01 14:10:52','2021-09-01 14:10:52','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/2G5A1626.png',0,'attachment','image/png',0),(344,2,'2021-09-01 14:25:51','2021-09-01 14:25:51','','2G5A1626 (1)','','inherit','open','closed','','2g5a1626-1','','','2021-09-01 14:25:51','2021-09-01 14:25:51','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/2G5A1626-1.png',0,'attachment','image/png',0),(345,2,'2021-09-01 14:37:49','2021-09-01 14:37:49','','2G5A1626','','inherit','open','closed','','2g5a1626-2','','','2021-09-01 14:37:49','2021-09-01 14:37:49','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/2G5A1626-2.png',0,'attachment','image/png',0),(346,2,'2021-09-01 14:45:34','2021-09-01 14:45:34','','2G5A1626 (2)','','inherit','open','closed','','2g5a1626-2-2','','','2021-09-01 14:45:34','2021-09-01 14:45:34','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/2G5A1626-2-1.png',0,'attachment','image/png',0),(348,2,'2021-09-01 14:56:11','2021-09-01 14:56:11','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-01 14:56:11','2021-09-01 14:56:11','',12,'https://michaelblakemenswear.com/?p=348',0,'revision','',0),(349,2,'2021-09-01 14:56:11','2021-09-01 14:56:11','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">View Now on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-01 14:56:11','2021-09-01 14:56:11','',12,'https://michaelblakemenswear.com/?p=349',0,'revision','',0),(350,2,'2021-09-01 14:56:12','2021-09-01 14:56:12','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW ON TUXEDO RENTALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-01 14:56:12','2021-09-01 14:56:12','',12,'https://michaelblakemenswear.com/?p=350',0,'revision','',0),(352,2,'2021-09-01 15:03:31','2021-09-01 15:03:31','','2G5A1540','','inherit','open','closed','','2g5a1540','','','2021-09-01 15:03:31','2021-09-01 15:03:31','',341,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A1540.png',0,'attachment','image/png',0),(353,2,'2021-09-01 15:03:50','2021-09-01 15:03:50','','2G5A1575','','inherit','open','closed','','2g5a1575','','','2021-09-01 15:03:50','2021-09-01 15:03:50','',341,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A1575.png',0,'attachment','image/png',0),(354,2,'2021-09-01 15:03:59','2021-09-01 15:03:59','','2G5A1605','','inherit','open','closed','','2g5a1605','','','2021-09-01 15:03:59','2021-09-01 15:03:59','',341,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/2G5A1605.png',0,'attachment','image/png',0),(357,2,'2021-09-02 14:49:47','2021-09-02 14:49:47','','2G5A1540','SUEDE BOMBER','inherit','open','closed','','2g5a1540-2','','','2021-11-17 16:37:10','2021-11-17 16:37:10','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/2G5A1540.jpg',0,'attachment','image/jpeg',0),(359,2,'2021-09-02 14:53:33','2021-09-02 14:53:33','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW ON TUXEDO RENTALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-02 14:53:33','2021-09-02 14:53:33','',12,'https://michaelblakemenswear.com/?p=359',0,'revision','',0),(360,2,'2021-09-02 14:53:33','2021-09-02 14:53:33','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW ON TUXEDO RENTALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">PURVEYORS OF TIMELESS STYLE</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-02 14:53:33','2021-09-02 14:53:33','',12,'https://michaelblakemenswear.com/?p=360',0,'revision','',0),(361,2,'2021-09-02 14:53:33','2021-09-02 14:53:33','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-02 14:53:33','2021-09-02 14:53:33','',12,'https://michaelblakemenswear.com/?p=361',0,'revision','',0),(365,2,'2021-09-04 14:46:38','2021-09-04 14:46:38','','chair photo','SUEDE BOMBER','inherit','open','closed','','chair-photo','','','2021-11-17 17:09:40','2021-11-17 17:09:40','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/chair-photo.jpg',0,'attachment','image/jpeg',0),(367,2,'2021-09-04 14:48:23','2021-09-04 14:48:23','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-04 14:48:23','2021-09-04 14:48:23','',12,'https://michaelblakemenswear.com/?p=367',0,'revision','',0),(368,2,'2021-09-04 14:48:24','2021-09-04 14:48:24','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-04 14:48:24','2021-09-04 14:48:24','',12,'https://michaelblakemenswear.com/?p=368',0,'revision','',0),(369,2,'2021-09-04 14:48:24','2021-09-04 14:48:24','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-04 14:48:24','2021-09-04 14:48:24','',12,'https://michaelblakemenswear.com/?p=369',0,'revision','',0),(370,2,'2021-09-04 20:06:38','2021-09-04 20:06:38','','Tweed Trouser','A Classic Glen Plaid Tweed With Tones of Blue, Orange, Tan. Pairs well With Our Suede Bomber And Merino Wool Sweaters. Offered In Made-To Measure Only.','publish','open','closed','','tweed-trouser','','','2021-09-04 20:06:38','2021-09-04 20:06:38','',0,'https://michaelblakemenswear.com/?post_type=product&p=370',0,'product','',0),(371,2,'2021-09-04 19:58:35','2021-09-04 19:58:35','','tweed trouser','TWEED TROUSER ','inherit','open','closed','','tweed-trouser-3','','','2021-11-17 16:36:55','2021-11-17 16:36:55','',370,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/tweed-trouser.jpg',0,'attachment','image/jpeg',0),(373,2,'2021-09-05 19:00:50','2021-09-05 19:00:50','','bag','','inherit','open','closed','','bag','','','2021-09-05 19:00:50','2021-09-05 19:00:50','',269,'https://michaelblakemenswear.com/wp-content/uploads/2021/08/bag.png',0,'attachment','image/png',0),(374,2,'2021-09-06 00:38:21','2021-09-06 00:38:21','','suede pocket','','inherit','open','closed','','suede-pocket','','','2021-09-06 00:38:21','2021-09-06 00:38:21','',341,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/suede-pocket.jpg',0,'attachment','image/jpeg',0),(375,2,'2021-09-06 00:39:27','2021-09-06 00:39:27','','Suede bottom','','inherit','open','closed','','suede-bottom','','','2021-09-06 00:39:27','2021-09-06 00:39:27','',341,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/Suede-bottom.jpg',0,'attachment','image/jpeg',0),(376,2,'2021-09-06 00:40:47','2021-09-06 00:40:47','It\'s cut from lamb suede, topped with color-matched ribbing and fully lined. The front pockets have pleats to allow extra room for your phone and wallet. Our version of the iconic bomber worn by aviators. Tailored for a modern fit.','Suede Bomber','<img class=\"alignnone size-medium wp-image-374\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/suede-pocket-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-375\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/Suede-bottom-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','inherit','closed','closed','','341-autosave-v1','','','2021-09-06 00:40:47','2021-09-06 00:40:47','',341,'https://michaelblakemenswear.com/?p=376',0,'revision','',0),(377,2,'2021-09-06 14:34:56','2021-09-06 14:34:56','','jacket','','inherit','open','closed','','jacket','','','2021-09-06 14:34:56','2021-09-06 14:34:56','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/jacket.png',0,'attachment','image/png',0),(379,2,'2021-09-06 14:51:36','2021-09-06 14:51:36','Our Complete Suit Package Includes 1 Custom Suit (Jacket and Pant) From Our Premium, Signature Or Cavani Series, 1 Custom Shirt, And 1 Shoe With Matching Belt.','Complete Suit Package','<img class=\"alignnone size-medium wp-image-380\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/jacket-1-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-381\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/shirt-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-382\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/red-monk-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-383\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/beits-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />','publish','open','closed','','complete-suit-package','','','2021-09-30 15:25:46','2021-09-30 15:25:46','',0,'https://michaelblakemenswear.com/?post_type=product&p=379',0,'product','',0),(380,2,'2021-09-06 14:49:12','2021-09-06 14:49:12','','jacket','','inherit','open','closed','','jacket-2','','','2021-09-06 14:49:12','2021-09-06 14:49:12','',379,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/jacket-1.png',0,'attachment','image/png',0),(381,2,'2021-09-06 14:49:18','2021-09-06 14:49:18','','shirt','','inherit','open','closed','','shirt','','','2021-09-06 14:49:18','2021-09-06 14:49:18','',379,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/shirt.png',0,'attachment','image/png',0),(382,2,'2021-09-06 14:49:24','2021-09-06 14:49:24','','red monk','','inherit','open','closed','','red-monk-2','','','2021-09-06 14:49:24','2021-09-06 14:49:24','',379,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/red-monk.png',0,'attachment','image/png',0),(383,2,'2021-09-06 14:49:29','2021-09-06 14:49:29','','beits','','inherit','open','closed','','beits-2','','','2021-09-06 14:49:29','2021-09-06 14:49:29','',379,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/beits.png',0,'attachment','image/png',0),(384,1,'2021-09-06 16:24:06','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Overview</h3>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<h2>Refunds</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Late or missing refunds</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<b>Sale items</b>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Exchanges</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Gifts</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received, a gift certificate will be mailed to you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Shipping returns</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To return your product, you should mail your product to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on where you live, the time it may take for your exchanged product to reach you may vary.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We don’t guarantee that we will receive your returned item.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h2>Need help?</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Contact us at {email} for questions related to refunds and returns.</p>\n<!-- /wp:paragraph -->','Refund and Returns Policy','','draft','closed','closed','','refund_returns','','','2021-09-06 16:24:06','0000-00-00 00:00:00','',0,'https://michaelblakemenswear.com/?page_id=384',0,'page','',0),(385,1,'2021-09-06 16:26:02','2021-09-06 16:26:02','[mailpoet_page]','MailPoet Page','','publish','closed','closed','','subscriptions','','','2021-09-06 16:26:02','2021-09-06 16:26:02','',0,'https://michaelblakemenswear.com/?p=385',0,'mailpoet_page','',0),(386,0,'2021-09-08 18:30:18','2021-09-08 18:30:18','','','','publish','closed','closed','','386','','','2021-09-08 18:30:18','2021-09-08 18:30:18','',0,'https://michaelblakemenswear.com/nf_sub/386/',0,'nf_sub','',0),(388,2,'2021-09-10 01:56:14','2021-09-10 01:56:14','','Canvas Leather Duffle','Durable Waxed Canvass Accented With Full Grain Leather Trim and Brass Hardware. Finished Leather Handles And A detachable Shoulder Strap.\r\nL21\" H 17\" W 10\"','publish','open','closed','','canvas-leather-duffle','','','2021-09-10 01:56:15','2021-09-10 01:56:15','',0,'https://michaelblakemenswear.com/?post_type=product&p=388',0,'product','',0),(389,2,'2021-09-10 02:44:01','2021-09-10 02:44:01','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 02:44:01','2021-09-10 02:44:01','',12,'https://michaelblakemenswear.com/?p=389',0,'revision','',0),(390,2,'2021-09-10 02:44:01','2021-09-10 02:44:01','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 02:44:01','2021-09-10 02:44:01','',12,'https://michaelblakemenswear.com/?p=390',0,'revision','',0),(391,2,'2021-09-10 02:44:01','2021-09-10 02:44:01','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 02:44:01','2021-09-10 02:44:01','',12,'https://michaelblakemenswear.com/?p=391',0,'revision','',0),(392,2,'2021-09-10 02:47:17','2021-09-10 02:47:17','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 02:47:17','2021-09-10 02:47:17','',12,'https://michaelblakemenswear.com/?p=392',0,'revision','',0),(393,2,'2021-09-10 02:47:17','2021-09-10 02:47:17','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 02:47:17','2021-09-10 02:47:17','',12,'https://michaelblakemenswear.com/?p=393',0,'revision','',0),(394,2,'2021-09-10 02:47:18','2021-09-10 02:47:18','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 02:47:18','2021-09-10 02:47:18','',12,'https://michaelblakemenswear.com/?p=394',0,'revision','',0),(395,2,'2021-09-10 03:00:54','2021-09-10 03:00:54','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 03:00:54','2021-09-10 03:00:54','',12,'https://michaelblakemenswear.com/?p=395',0,'revision','',0),(396,2,'2021-09-10 03:00:54','2021-09-10 03:00:54','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 03:00:54','2021-09-10 03:00:54','',12,'https://michaelblakemenswear.com/?p=396',0,'revision','',0),(397,2,'2021-09-10 03:00:54','2021-09-10 03:00:54','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-09-10 03:00:54','2021-09-10 03:00:54','',12,'https://michaelblakemenswear.com/?p=397',0,'revision','',0),(399,2,'2021-09-15 02:05:59','2021-09-15 02:05:59','','fall 21 promo','','inherit','open','closed','','fall-21-promo','','','2021-09-15 02:05:59','2021-09-15 02:05:59','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/fall-21-promo.m4v',0,'attachment','video/mp4',0),(401,2,'2021-09-18 17:56:08','2021-09-18 17:56:08','','Plaid Wool Bomber','The definition of \"Lux Utility\" combining the cool of a classic aviators jacket with plaid wool and storm collar detailing. The essential third piece that adds timeless style to casual looks, and a laid back twist to tailored separates. (Available For Pre-Order)','publish','open','closed','','plaid-wool-bomber','','','2021-09-18 17:56:08','2021-09-18 17:56:08','',0,'https://michaelblakemenswear.com/?post_type=product&p=401',0,'product','',0),(402,2,'2021-09-18 17:50:56','2021-09-18 17:50:56','','DSC_0228','','inherit','open','closed','','dsc_0228','','','2021-09-18 17:50:56','2021-09-18 17:50:56','',401,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0228.png',0,'attachment','image/png',0),(403,2,'2021-09-18 17:51:11','2021-09-18 17:51:11','','DSC_0229','','inherit','open','closed','','dsc_0229','','','2021-09-18 17:51:11','2021-09-18 17:51:11','',401,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0229.png',0,'attachment','image/png',0),(404,2,'2021-09-18 17:51:30','2021-09-18 17:51:30','','DSC_0230','','inherit','open','closed','','dsc_0230','','','2021-09-18 17:51:30','2021-09-18 17:51:30','',401,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0230.png',0,'attachment','image/png',0),(405,2,'2021-09-18 17:51:45','2021-09-18 17:51:45','','DSC_0231','','inherit','open','closed','','dsc_0231','','','2021-09-18 17:51:45','2021-09-18 17:51:45','',401,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0231.png',0,'attachment','image/png',0),(406,2,'2021-09-18 17:52:02','2021-09-18 17:52:02','','DSC_0232','','inherit','open','closed','','dsc_0232','','','2021-09-18 17:52:02','2021-09-18 17:52:02','',401,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0232.png',0,'attachment','image/png',0),(407,2,'2021-09-18 17:52:21','2021-09-18 17:52:21','','DSC_0233','','inherit','open','closed','','dsc_0233','','','2021-09-18 17:52:21','2021-09-18 17:52:21','',401,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0233.png',0,'attachment','image/png',0),(408,2,'2021-09-20 15:15:56','2021-09-20 15:15:56',' These sunglasses are named for the Caribbean Island of St Maarten and Maho Beach a great seaside spot to experience the thrill of watching planes takeoff and land while relaxing in the sun','MAARTEN EYEWEAR','Amber Colored Acetate Frame, Green Lens\r\n141mm(W) + 42mm(H), Polarized,Metal Hinge, ','publish','open','closed','','maarten-eyewear','','','2021-09-21 15:47:51','2021-09-21 15:47:51','',0,'https://michaelblakemenswear.com/?post_type=product&p=408',0,'product','',0),(410,2,'2021-09-20 15:21:55','2021-09-20 15:21:55','Named after Grand Cayman and it\'s popular 7 mile beach which actually only measures 5.5 miles. These frames are perfect for the gorgeous clear waters, coral sand, and lively atmosphere. ','CAYMAN EYEWEAR','Tortoise Acetate Frame with Brown Lens\r\n143MM(W) + 50MM(H) Polarized, Metal Hinge','publish','open','closed','','cayman-eyewear','','','2021-09-22 02:36:39','2021-09-22 02:36:39','',0,'https://michaelblakemenswear.com/?post_type=product&p=410',0,'product','',0),(411,2,'2021-09-20 15:26:36','2021-09-20 15:26:36','Named after St Thomas in the Virgin Islands home to Magens Bay the most photogenic and swimmable beach in the area. With it\'s white sand, pristine waters and spectacular views. These frames are perfect for the evening sunset.','THOMAS EYEWEAR','Tortoise Acetate Frame Gray Lens\r\n143mm(W) + 40mm(H) Metal Hinge Polarized ','publish','open','closed','','thomas-eyewear','','','2021-09-22 02:27:21','2021-09-22 02:27:21','',0,'https://michaelblakemenswear.com/?post_type=product&p=411',0,'product','',0),(412,2,'2021-09-20 15:31:48','2021-09-20 15:31:48','Nassau the capital of the Bahamas and neighboring paradise Island, a metropolis where the tropics meets the big city. These frames are perfect for discovering the islands history, art and nightlife.','Nassau Eyewear','Tortoise Acetate Frame With Gray Lens\r\n144MM (H) + 40MM (W) Metal Hinge, Polarized','publish','open','closed','','nassau-eyewear','','','2021-09-22 16:03:28','2021-09-22 16:03:28','',0,'https://michaelblakemenswear.com/?post_type=product&p=412',0,'product','',0),(413,2,'2021-09-20 15:53:36','2021-09-20 15:53:36','A Collection Of Eyewear That\'s Classic, Comfortable, And Stylish. As With A perfectly Tailored Suit That Flatters The Body Sunglasses Can Compliment Your Face. Each Style Has Been Affectionately Named For One Of Our favorite Caribbean Islands Where The Sand Is Soft And The Sun Is Bright!.St Thomas, St Maarten, Grand Cayman, And Nassau Each Pair Comes With A Pouch And A Dust Cloth. ','EYEWEAR','','inherit','closed','closed','','262-autosave-v1','','','2021-09-20 15:53:36','2021-09-20 15:53:36','',262,'https://michaelblakemenswear.com/?p=413',0,'revision','',0),(415,2,'2021-09-21 15:47:03','2021-09-21 15:47:03',' These sunglasses are named for the Caribbean Island of St Maarten and Maho Beach a great seaside spot to experience the thrill of watching planes takeoff and land while relaxing in the sun','MAARTEN EYEWEAR','Amber Colored Acetate Frame, Green Lens\r\n141mm(W) + 42mm(H), Polarized,Metal Hinge, ','inherit','closed','closed','','408-autosave-v1','','','2021-09-21 15:47:03','2021-09-21 15:47:03','',408,'https://michaelblakemenswear.com/?p=415',0,'revision','',0),(417,2,'2021-09-22 02:26:26','2021-09-22 02:26:26','Named after St Thomas in the Virgin Islands home to Magens Bay the most photogenic and swimmable beach with it\'s white sand, pristine waters and spectacular view. These frames are perfect for the evening sunset.','THOMAS EYEWEAR','Tortoise Acetate Frame Gray Lens\n143mm(W) + 40mm(H) Metal Hinge Polarized ','inherit','closed','closed','','411-autosave-v1','','','2021-09-22 02:26:26','2021-09-22 02:26:26','',411,'https://michaelblakemenswear.com/?p=417',0,'revision','',0),(418,2,'2021-09-22 02:36:32','2021-09-22 02:36:32','Named after Grand Cayman and it\'s popular 7 mile beach which actually only measures 5.5 miles. These frames are perfect for the gorgeous clear waters, coral sand, and lively atmosphere. ','CAYMAN EYEWEAR','Tortoise Acetate Frame with Brown Lens\n143MM(W) + 50MM(H) Polarized, Metal Hinge','inherit','closed','closed','','410-autosave-v1','','','2021-09-22 02:36:32','2021-09-22 02:36:32','',410,'https://michaelblakemenswear.com/?p=418',0,'revision','',0),(420,2,'2021-09-22 16:02:42','2021-09-22 16:02:42','','blake1','','inherit','open','closed','','blake1','','','2021-09-22 16:02:42','2021-09-22 16:02:42','',412,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/blake1.png',0,'attachment','image/png',0),(421,2,'2021-09-22 16:02:58','2021-09-22 16:02:58','','DSC_0054','','inherit','open','closed','','dsc_0054','','','2021-09-22 16:02:58','2021-09-22 16:02:58','',412,'https://michaelblakemenswear.com/wp-content/uploads/2021/09/DSC_0054.png',0,'attachment','image/png',0),(423,2,'2021-09-30 15:26:24','2021-09-30 15:26:24','Our Complete Suit Package Includes 1 Custom Suit (Jacket and Pant) From Our Premium, Signature Or Cavani Series, 1 Custom Shirt, And 1 Shoe With Matching Belt.','Complete Suit Package','<img class=\"alignnone size-medium wp-image-380\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/jacket-1-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-381\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/shirt-300x200.png\" alt=\"\" width=\"300\" height=\"200\" /> <img class=\"alignnone size-medium wp-image-382\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/red-monk-240x300.png\" alt=\"\" width=\"240\" height=\"300\" /> <img class=\"alignnone size-medium wp-image-383\" src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/09/beits-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />','inherit','closed','closed','','379-autosave-v1','','','2021-09-30 15:26:24','2021-09-30 15:26:24','',379,'https://michaelblakemenswear.com/?p=423',0,'revision','',0),(426,1,'2021-10-04 19:33:23','2021-10-04 19:33:23','','Default Kit','','inherit','closed','closed','','5-revision-v1','','','2021-10-04 19:33:23','2021-10-04 19:33:23','',5,'https://michaelblakemenswear.com/?p=426',0,'revision','',0),(428,1,'2021-10-04 19:36:17','2021-10-04 19:36:17','.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\n\nbackground:red !important;\n\nbackground-color:red !important;\n\ncolor:white !important;\n\ntext-shadow: transparent !important;\n\nbox-shadow: none;\n\nborder-color:#ca0606 !important;\n\n}\n\n.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {\n\nbackground:red !important;\n\nbackground-color:red !important;\n\ncolor:white !important;\n\ntext-shadow: transparent !important;\n\nbox-shadow: none;\n\nborder-color:#ca0606 !important;\n\n}\n\n.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {\n\nbackground: red !important;\n\ncolor:white !important;\n\ntext-shadow: transparent !important;\n\nborder-color:#ca0606 !important;\n\n}\n\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\n\nbackground: red !important;\n\nbox-shadow: none;\n\ntext-shadow: transparent !important;\n\ncolor:white !important;\n\nborder-color:#ca0606 !important;\n\n}','hello-elementor','','publish','closed','closed','','hello-elementor','','','2021-10-04 19:36:17','2021-10-04 19:36:17','',0,'https://michaelblakemenswear.com/2021/10/04/hello-elementor/',0,'custom_css','',0),(429,1,'2021-10-04 19:36:17','2021-10-04 19:36:17','.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\n\nbackground:red !important;\n\nbackground-color:red !important;\n\ncolor:white !important;\n\ntext-shadow: transparent !important;\n\nbox-shadow: none;\n\nborder-color:#ca0606 !important;\n\n}\n\n.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {\n\nbackground:red !important;\n\nbackground-color:red !important;\n\ncolor:white !important;\n\ntext-shadow: transparent !important;\n\nbox-shadow: none;\n\nborder-color:#ca0606 !important;\n\n}\n\n.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {\n\nbackground: red !important;\n\ncolor:white !important;\n\ntext-shadow: transparent !important;\n\nborder-color:#ca0606 !important;\n\n}\n\n.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {\n\nbackground: red !important;\n\nbox-shadow: none;\n\ntext-shadow: transparent !important;\n\ncolor:white !important;\n\nborder-color:#ca0606 !important;\n\n}','hello-elementor','','inherit','closed','closed','','428-revision-v1','','','2021-10-04 19:36:17','2021-10-04 19:36:17','',428,'https://michaelblakemenswear.com/?p=429',0,'revision','',0),(430,1,'2021-10-04 19:57:34','2021-10-04 19:57:34','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 2 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-10-04 19:57:34','2021-10-04 19:57:34','',28,'https://michaelblakemenswear.com/?p=430',0,'revision','',0),(431,1,'2021-10-04 19:57:34','2021-10-04 19:57:34','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 2 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-10-04 19:57:34','2021-10-04 19:57:34','',28,'https://michaelblakemenswear.com/?p=431',0,'revision','',0),(432,1,'2021-10-04 19:57:35','2021-10-04 19:57:35','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-330\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/grooming/\" class = \"hfe-sub-menu-item\">Grooming</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-10-04 19:57:35','2021-10-04 19:57:35','',28,'https://michaelblakemenswear.com/?p=432',0,'revision','',0),(433,1,'2021-10-04 19:57:45','2021-10-04 19:57:45','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-175\"><a href=\"#\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:57:45','2021-10-04 19:57:45','',86,'https://michaelblakemenswear.com/?p=433',0,'revision','',0),(434,1,'2021-10-04 19:57:45','2021-10-04 19:57:45','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-175\"><a href=\"#\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.calvarycrossag.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:57:45','2021-10-04 19:57:45','',86,'https://michaelblakemenswear.com/?p=434',0,'revision','',0),(435,1,'2021-10-04 19:57:45','2021-10-04 19:57:45','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:57:45','2021-10-04 19:57:45','',86,'https://michaelblakemenswear.com/?p=435',0,'revision','',0),(436,1,'2021-10-04 19:58:18','2021-10-04 19:58:18','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:58:18','2021-10-04 19:58:18','',86,'https://michaelblakemenswear.com/?p=436',0,'revision','',0),(437,1,'2021-10-04 19:58:18','2021-10-04 19:58:18','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:58:18','2021-10-04 19:58:18','',86,'https://michaelblakemenswear.com/?p=437',0,'revision','',0),(438,1,'2021-10-04 19:58:18','2021-10-04 19:58:18','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:58:18','2021-10-04 19:58:18','',86,'https://michaelblakemenswear.com/?p=438',0,'revision','',0),(439,1,'2021-10-04 19:59:04','2021-10-04 19:59:04','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:59:04','2021-10-04 19:59:04','',86,'https://michaelblakemenswear.com/?p=439',0,'revision','',0),(440,1,'2021-10-04 19:59:04','2021-10-04 19:59:04','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:59:04','2021-10-04 19:59:04','',86,'https://michaelblakemenswear.com/?p=440',0,'revision','',0),(441,1,'2021-10-04 19:59:05','2021-10-04 19:59:05','<nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-b58c10e\"><li id=\"menu-item-204\"><a href=\"https://michaelblakemenswear.com/about-us/\" class = \"hfe-menu-item\">About Us</a></li>\n<li id=\"menu-item-173\"><a href=\"https://michaelblakemenswear.com/gallery/\" class = \"hfe-menu-item\">Gallery</a></li>\n<li id=\"menu-item-174\"><a href=\"https://michaelblakemenswear.com/contact-us/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav> \n Copyright © [hfe_current_year] [hfe_site_title] | Website built by <a href="https://esselwebdesign.com">Essel Web Design</a> \n <h2>Follow Us:</h2> \n <ul>\n <li>\n <a\n href=\"https://www.facebook.com/MichaelBlakeMenswearLLC/\" >\n </a>\n </li>\n </ul>','Michael Blake Footer','','inherit','closed','closed','','86-revision-v1','','','2021-10-04 19:59:05','2021-10-04 19:59:05','',86,'https://michaelblakemenswear.com/?p=441',0,'revision','',0),(442,1,'2021-10-04 20:00:00','2021-10-04 20:00:00','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-330\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/grooming/\" class = \"hfe-sub-menu-item\">Grooming</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-10-04 20:00:00','2021-10-04 20:00:00','',28,'https://michaelblakemenswear.com/?p=442',0,'revision','',0),(443,1,'2021-10-04 20:00:00','2021-10-04 20:00:00','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-330\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/grooming/\" class = \"hfe-sub-menu-item\">Grooming</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-10-04 20:00:00','2021-10-04 20:00:00','',28,'https://michaelblakemenswear.com/?p=443',0,'revision','',0),(444,1,'2021-10-04 20:00:00','2021-10-04 20:00:00','<a data-elementor-open-lightbox=\"\" class=\'elementor-clickable\' href=\"https://michaelblakemenswear.com\">\n <img src=\"https://michaelblakemenswear.com/wp-content/uploads/2021/08/MichaelBlakeLogo-300x83.png\" alt=\"MichaelBlakeLogo\"/>\n </a>\n <nav data-toggle-icon=\"<i aria-hidden="true" tabindex="0" class="fas fa-align-justify"></i>\" data-close-icon=\"<i aria-hidden="true" tabindex="0" class="far fa-window-close"></i>\" data-full-width=\"yes\"><ul id=\"menu-1-ef0f582\"><li id=\"menu-item-35\"><a href=\"https://michaelblakemenswear.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-36\"><a target=\"_blank\"rel=\"noopener\" href=\"http://mycustomclothier.com/Michaelblake\" class = \"hfe-menu-item\">Made To Measure</a></li>\n<li id=\"menu-item-37\"><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\" class = \"hfe-menu-item\">Ready To Wear</a></li>\n<li id=\"menu-item-38\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/\" class = \"hfe-menu-item\">Accessories</a>\n<ul>\n <li id=\"menu-item-228\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/bags/\" class = \"hfe-sub-menu-item\">Bags</a></li>\n <li id=\"menu-item-229\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/eyewear/\" class = \"hfe-sub-menu-item\">Eyewear</a></li>\n <li id=\"menu-item-227\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/fragrances/\" class = \"hfe-sub-menu-item\">Fragrances</a></li>\n <li id=\"menu-item-330\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/grooming/\" class = \"hfe-sub-menu-item\">Grooming</a></li>\n <li id=\"menu-item-226\"><a href=\"https://michaelblakemenswear.com/product-category/accessories/shoes/\" class = \"hfe-sub-menu-item\">Shoes</a></li>\n</ul>\n</li>\n<li id=\"menu-item-89\"><a href=\"https://michaelblakemenswear.com/tuxedo-rentals/\" class = \"hfe-menu-item\">Tuxedo Rentals</a></li>\n<li id=\"menu-item-40\"><a target=\"_blank\"rel=\"noopener\" href=\"http://michaelblakemenswear.Wordpress.com\" class = \"hfe-menu-item\">MBMag</a></li>\n</ul></nav> \n <!-- Begin TVSquared Page Visits Tracking Code -->\n<!-- End TVSquared Tracking Code -->\n <form role=\"search\" action=\"https://michaelblakemenswear.com\" method=\"get\">\n <input placeholder=\"Search\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n <button id=\"clear\" type=\"reset\">\n </button>\n </form>\n <a href=\"https://michaelblakemenswear.com/cart/\" title=\"View your shopping cart\">\n 1 \n </a>','Michael Blake Website Header','','inherit','closed','closed','','28-revision-v1','','','2021-10-04 20:00:00','2021-10-04 20:00:00','',28,'https://michaelblakemenswear.com/?p=444',0,'revision','',0),(445,0,'2021-10-06 18:36:16','2021-10-06 18:36:16','','','','publish','closed','closed','','445','','','2021-10-06 18:36:16','2021-10-06 18:36:16','',0,'https://michaelblakemenswear.com/nf_sub/445/',0,'nf_sub','',0),(446,0,'2021-11-02 01:02:13','2021-11-02 01:02:13','','','','publish','closed','closed','','446','','','2021-11-02 01:02:13','2021-11-02 01:02:13','',0,'https://michaelblakemenswear.com/nf_sub/446/',0,'nf_sub','',0),(449,2,'2021-11-17 16:16:26','2021-11-17 16:16:26','','blue sweater','MERINO CREW ','inherit','open','closed','','blue-sweater','','','2021-11-17 16:36:47','2021-11-17 16:36:47','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/blue-sweater.jpg',0,'attachment','image/jpeg',0),(450,2,'2021-11-17 16:17:47','2021-11-17 16:17:47','','red t neck','MERINO T-NECK ','inherit','open','closed','','red-t-neck','','','2021-11-17 17:09:20','2021-11-17 17:09:20','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/red-t-neck.jpg',0,'attachment','image/jpeg',0),(451,2,'2021-11-17 16:19:47','2021-11-17 16:19:47','','tweed trouser','TWEED TROUSER','inherit','open','closed','','tweed-trouser-2','','','2021-11-17 17:09:28','2021-11-17 17:09:28','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/tweed-trouser.jpg',0,'attachment','image/jpeg',0),(452,2,'2021-11-17 16:24:01','2021-11-17 16:24:01','','red t neck','MERINO T-NECK ','inherit','open','closed','','red-t-neck-2','','','2021-11-17 16:36:38','2021-11-17 16:36:38','',12,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/red-t-neck-1.jpg',0,'attachment','image/jpeg',0),(453,2,'2021-11-17 16:44:57','2021-11-17 16:44:57','','MB Classic_WhiteBG (2)','','inherit','open','closed','','mb-classic_whitebg-2','','','2021-11-17 16:44:57','2021-11-17 16:44:57','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/MB-Classic_WhiteBG-2.png',0,'attachment','image/png',0),(454,2,'2021-11-17 16:46:08','2021-11-17 16:46:08','','MB Signature-02 (1)','SIGNATURE FRAGRANCE','inherit','open','closed','','mb-signature-02-1','','','2021-11-17 16:49:06','2021-11-17 16:49:06','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/MB-Signature-02-1.png',0,'attachment','image/png',0),(455,2,'2021-11-17 17:00:49','2021-11-17 17:00:49','','SIGNATURE BOX','SIGNATURE FRAGRANCE','inherit','open','closed','','signature-box','','','2021-11-17 17:07:32','2021-11-17 17:07:32','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/SIGNATURE-BOX.jpg',0,'attachment','image/jpeg',0),(456,2,'2021-11-17 17:01:51','2021-11-17 17:01:51','','MB Classic_WhiteBG (2)','','inherit','open','closed','','mb-classic_whitebg-2-2','','','2021-11-17 17:01:51','2021-11-17 17:01:51','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/MB-Classic_WhiteBG-2-1.png',0,'attachment','image/png',0),(457,2,'2021-11-17 17:03:31','2021-11-17 17:03:31','','CLASSIC BOX','CLASSIC FRAGRANCE','inherit','open','closed','','classic-box','','','2021-11-17 17:06:51','2021-11-17 17:06:51','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/CLASSIC-BOX.jpg',0,'attachment','image/jpeg',0),(458,2,'2021-11-17 17:04:36','2021-11-17 17:04:36','','SIGNATURE BOX','','inherit','open','closed','','signature-box-2','','','2021-11-17 17:04:36','2021-11-17 17:04:36','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/SIGNATURE-BOX-1.jpg',0,'attachment','image/jpeg',0),(459,2,'2021-11-17 17:15:19','2021-11-17 17:15:19','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-17 17:15:19','2021-11-17 17:15:19','',12,'https://michaelblakemenswear.com/?p=459',0,'revision','',0),(460,2,'2021-11-17 17:15:20','2021-11-17 17:15:20','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">A/W 21\nESSENTIALS</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-17 17:15:20','2021-11-17 17:15:20','',12,'https://michaelblakemenswear.com/?p=460',0,'revision','',0),(461,2,'2021-11-17 17:15:20','2021-11-17 17:15:20','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-17 17:15:20','2021-11-17 17:15:20','',12,'https://michaelblakemenswear.com/?p=461',0,'revision','',0),(462,2,'2021-11-17 17:39:12','2021-11-17 17:39:12','','blue sweater','MERINO CREW','inherit','open','closed','','blue-sweater-2','','','2021-11-17 17:39:52','2021-11-17 17:39:52','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/blue-sweater.png',0,'attachment','image/png',0),(463,2,'2021-11-17 17:40:21','2021-11-17 17:40:21','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-17 17:40:21','2021-11-17 17:40:21','',12,'https://michaelblakemenswear.com/?p=463',0,'revision','',0),(464,2,'2021-11-17 17:40:21','2021-11-17 17:40:21','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-17 17:40:21','2021-11-17 17:40:21','',12,'https://michaelblakemenswear.com/?p=464',0,'revision','',0),(465,2,'2021-11-17 17:40:22','2021-11-17 17:40:22','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-17 17:40:22','2021-11-17 17:40:22','',12,'https://michaelblakemenswear.com/?p=465',0,'revision','',0),(466,2,'2021-11-18 17:06:29','2021-11-18 17:06:29','','B344825D-A41F-4706-9300-48F8AC4B839D','GIFT CARDS','inherit','open','closed','','b344825d-a41f-4706-9300-48f8ac4b839d','','','2021-11-18 17:07:06','2021-11-18 17:07:06','',0,'https://michaelblakemenswear.com/wp-content/uploads/2021/11/B344825D-A41F-4706-9300-48F8AC4B839D.png',0,'attachment','image/png',0),(468,2,'2021-11-18 17:08:26','2021-11-18 17:08:26','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-18 17:08:26','2021-11-18 17:08:26','',12,'https://michaelblakemenswear.com/?p=468',0,'revision','',0),(469,2,'2021-11-18 17:08:26','2021-11-18 17:08:26','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-18 17:08:26','2021-11-18 17:08:26','',12,'https://michaelblakemenswear.com/?p=469',0,'revision','',0),(470,2,'2021-11-18 17:08:26','2021-11-18 17:08:26','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2021-11-18 17:08:26','2021-11-18 17:08:26','',12,'https://michaelblakemenswear.com/?p=470',0,'revision','',0),(474,2,'2022-01-11 16:30:18','2022-01-11 16:30:18','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-01-11 16:30:18','2022-01-11 16:30:18','',12,'https://michaelblakemenswear.com/?p=474',0,'revision','',0),(475,2,'2022-01-11 16:30:18','2022-01-11 16:30:18','<h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW READY TO WEAR</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">HOLIDAY GIFT GIVING</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-01-11 16:30:18','2022-01-11 16:30:18','',12,'https://michaelblakemenswear.com/?p=475',0,'revision','',0),(476,2,'2022-01-11 16:30:19','2022-01-11 16:30:19','<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-01-11 16:30:19','2022-01-11 16:30:19','',12,'https://michaelblakemenswear.com/?p=476',0,'revision','',0),(477,0,'2022-01-14 20:22:23','2022-01-14 20:22:23','','','','publish','closed','closed','','477','','','2022-01-14 20:22:23','2022-01-14 20:22:23','',0,'https://michaelblakemenswear.com/nf_sub/477/',0,'nf_sub','',0),(478,0,'2022-01-25 01:20:26','2022-01-25 01:20:26','','','','publish','closed','closed','','478','','','2022-01-25 01:20:26','2022-01-25 01:20:26','',0,'https://michaelblakemenswear.com/nf_sub/478/',0,'nf_sub','',0),(481,2,'2022-02-04 16:00:32','2022-02-04 16:00:32','<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:00:32','2022-02-04 16:00:32','',12,'https://michaelblakemenswear.com/?p=481',0,'revision','',0),(482,2,'2022-02-04 16:00:33','2022-02-04 16:00:33','<style>/*! elementor - v3.5.3 - 28-12-2021 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:00:33','2022-02-04 16:00:33','',12,'https://michaelblakemenswear.com/?p=482',0,'revision','',0),(483,2,'2022-02-04 16:00:33','2022-02-04 16:00:33','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedorentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:00:33','2022-02-04 16:00:33','',12,'https://michaelblakemenswear.com/?p=483',0,'revision','',0),(484,2,'2022-02-04 16:06:12','2022-02-04 16:06:12','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedorentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:06:12','2022-02-04 16:06:12','',12,'https://michaelblakemenswear.com/?p=484',0,'revision','',0),(485,2,'2022-02-04 16:06:13','2022-02-04 16:06:13','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedorentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:06:13','2022-02-04 16:06:13','',12,'https://michaelblakemenswear.com/?p=485',0,'revision','',0),(486,2,'2022-02-04 16:06:13','2022-02-04 16:06:13','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedo-rentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:06:13','2022-02-04 16:06:13','',12,'https://michaelblakemenswear.com/?p=486',0,'revision','',0),(487,2,'2022-02-04 16:09:31','2022-02-04 16:09:31','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hello-elementor','','','2022-02-04 16:09:31','2022-02-04 16:09:31','',0,'https://michaelblakemenswear.com/2022/02/04/wp-global-styles-hello-elementor/',0,'wp_global_styles','',0),(488,2,'2022-02-04 16:16:48','2022-02-04 16:16:48','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedo-rentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:16:48','2022-02-04 16:16:48','',12,'https://michaelblakemenswear.com/?p=488',0,'revision','',0),(489,2,'2022-02-04 16:16:48','2022-02-04 16:16:48','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedo-rentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:16:48','2022-02-04 16:16:48','',12,'https://michaelblakemenswear.com/?p=489',0,'revision','',0),(490,2,'2022-02-04 16:16:48','2022-02-04 16:16:48','<style>/*! elementor - v3.5.5 - 03-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2><a href=\"https://michaelblakemenswear.com/product-category/tuxedorentals/\">VIEW NOW on tuxedo rentals</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/ready-to-wear/\">YOUR FORMAL WEAR DESTINATION</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/suits/\">Suits</a></h2> \n https://michaelblakemenswear.com/wp-content/uploads/2021/08/10SecAllPair-Promo.mp4 \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/product-category/accessories/\">Accessories</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">View Now</a></h2> \n <h2><a href=\"https://michaelblakemenswear.com/about-us/\">about us</a></h2> \n https://michaelblakemenswear.calvarycrossag.com/wp-content/uploads/2021/08/joined_video_efed6b498ffd45bab37787b4c4e7cde7.mp4','Home Page','','inherit','closed','closed','','12-revision-v1','','','2022-02-04 16:16:48','2022-02-04 16:16:48','',12,'https://michaelblakemenswear.com/?p=490',0,'revision','',0),(491,0,'2022-02-04 18:48:46','2022-02-04 18:48:46','','','','publish','closed','closed','','491','','','2022-02-04 18:48:46','2022-02-04 18:48:46','',0,'https://michaelblakemenswear.com/nf_sub/491/',0,'nf_sub','',0),(493,0,'2022-03-04 23:19:17','2022-03-04 23:19:17','','','','publish','closed','closed','','493','','','2022-03-04 23:19:17','2022-03-04 23:19:17','',0,'https://michaelblakemenswear.com/nf_sub/493/',0,'nf_sub','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0),(35,16,0),(36,16,0),(37,16,0),(38,16,0),(40,16,0),(51,4,0),(51,18,0),(56,2,0),(56,19,0),(56,22,0),(89,16,0),(173,23,0),(174,23,0),(183,2,0),(183,25,0),(183,26,0),(204,23,0),(205,27,0),(210,2,0),(210,25,0),(226,16,0),(227,16,0),(228,16,0),(229,16,0),(262,2,0),(262,28,0),(269,2,0),(269,29,0),(275,2,0),(275,30,0),(280,2,0),(280,30,0),(282,27,0),(289,2,0),(289,31,0),(295,2,0),(295,31,0),(296,2,0),(296,31,0),(298,2,0),(298,31,0),(299,2,0),(299,31,0),(330,16,0),(341,2,0),(341,22,0),(370,2,0),(370,22,0),(379,2,0),(379,24,0),(388,2,0),(388,29,0),(401,2,0),(401,22,0),(408,2,0),(408,28,0),(410,2,0),(410,28,0),(411,2,0),(411,28,0),(412,2,0),(412,28,0),(487,33,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,21),(3,3,'product_type','',0,0),(4,4,'product_type','',0,1),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'nav_menu','',0,11),(17,17,'product_cat','',0,0),(18,18,'product_cat','',0,1),(19,19,'product_cat','',0,1),(21,21,'product_cat','',0,0),(22,22,'product_cat','Curated Items With Versatile Pieces That Can Be Worn Together Or Styled In Your Own Way. This Creates A Wardrobe Easy To Wear And Suitable For All Occasions.',0,4),(23,23,'nav_menu','',0,3),(24,24,'product_cat','Our Complete Custom Suit Package Includes 1 Suit(Jacket and Pant) Select Fabric Only, 1 Custom Shirt, 1 Pair Of Shoes With matching Belt',0,1),(25,25,'product_cat','',21,2),(26,26,'product_cat','',21,1),(27,27,'elementor_library_type','',0,0),(28,28,'product_cat','',21,5),(29,29,'product_cat','',21,2),(30,30,'product_cat','',21,2),(31,31,'product_cat','',21,5),(32,32,'elementor_library_type','',0,0),(33,33,'wp_theme','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; INSERT INTO `wp_termmeta` VALUES (1,17,'order','0'),(2,18,'order','0'),(3,18,'product_count_product_cat','1'),(4,19,'order','0'),(5,19,'product_count_product_cat','1'),(7,21,'order','0'),(8,22,'order','0'),(9,22,'product_count_product_cat','4'),(10,15,'product_count_product_cat','0'),(11,24,'order','0'),(12,24,'display_type',''),(13,24,'thumbnail_id','377'),(14,25,'order','0'),(15,25,'product_count_product_cat','2'),(16,21,'product_count_product_cat','16'),(17,26,'order','0'),(18,26,'product_count_product_cat','1'),(19,28,'order','0'),(20,28,'product_count_product_cat','5'),(21,29,'order','0'),(22,29,'product_count_product_cat','2'),(23,30,'order','0'),(24,30,'product_count_product_cat','2'),(25,31,'order','0'),(26,31,'product_count_product_cat','5'),(27,22,'display_type',''),(28,22,'thumbnail_id','0'),(29,24,'product_count_product_cat','1'); /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Primary Menu','primary-menu',0),(17,'Men\'s Shirts (Collared)','mens-shirts-collared',0),(18,'Men\'s T-Shirts','mens-t-shirts',0),(19,'Sweaters','sweaters',0),(21,'Accessories','accessories',0),(22,'Ready To Wear','ready-to-wear',0),(23,'Footer Menu','footer-menu',0),(24,'Suits','suits',0),(25,'Shoes','shoes',0),(26,'Shoes And Belts','shoes-and-belts',0),(27,'landing-page','landing-page',0),(28,'EYEWEAR','eyewear',0),(29,'BAGS','bags',0),(30,'FRAGRANCES','fragrances',0),(31,'GROOMING','grooming',0),(32,'page','page',0),(33,'hello-elementor','hello-elementor',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','eessel'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"03d36b4993b2dbe1f74c77dce360875915839893d8db44c6d8c8b21c5dc83359\";a:4:{s:10:\"expiration\";i:1645375426;s:2:\"ip\";s:13:\"69.222.196.79\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\";s:5:\"login\";i:1644165826;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','492'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"69.222.196.0\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:18Ku98RQZzRbXEG0zw9t5k9m'),(20,1,'wc_last_active','1644105600'),(21,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(22,1,'wp_user-settings-time','1629730214'),(23,1,'hfe-popup','dismissed'),(24,1,'_order_count','0'),(25,1,'header-footer-elementor-rating','delayed-notice'),(26,1,'managenav-menuscolumnshidden','a:4:{i:0;s:15:\"title-attribute\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(27,1,'metaboxhidden_nav-menus','a:5:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-product_cat\";i:4;s:15:\"add-product_tag\";}'),(28,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"3dd48ab31d016ffcbf3314df2b3cb9ce\";a:11:{s:3:\"key\";s:32:\"3dd48ab31d016ffcbf3314df2b3cb9ce\";s:10:\"product_id\";i:341;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:250;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:250;s:8:\"line_tax\";i:0;}}}'),(29,2,'nickname','michael.bennett'),(30,2,'first_name','Michael'),(31,2,'last_name','Bennett'),(32,2,'description',''),(33,2,'rich_editing','true'),(34,2,'syntax_highlighting','true'),(35,2,'comment_shortcuts','false'),(36,2,'admin_color','fresh'),(37,2,'use_ssl','0'),(38,2,'show_admin_bar_front','true'),(39,2,'locale',''),(40,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(41,2,'wp_user_level','10'),(42,2,'dismissed_wp_pointers','wc_services_new_carrier_dhl_express'),(43,2,'last_update','1631623480'),(44,1,'nav_menu_recently_edited','16'),(45,2,'default_password_nag',''),(46,2,'session_tokens','a:1:{s:64:\"2b3c4184cdce49eb958bc4f6541c95aef0583a53b9fcd8547740a1c9ac185455\";a:4:{s:10:\"expiration\";i:1644162641;s:2:\"ip\";s:13:\"12.179.119.82\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36\";s:5:\"login\";i:1643989841;}}'),(47,2,'wc_last_active','1643932800'),(49,2,'_woocommerce_tracks_anon_id','woo:Nodl0d2GNmwuSGMe8MdBc824'),(50,2,'wp_dashboard_quick_press_last_post_id','479'),(51,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(52,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"12.179.119.0\";}'),(55,1,'bsf-optin-notice','notice-dismissed'),(57,2,'_order_count','0'),(58,2,'wp_user-settings','libraryContent=browse&editor=html'),(59,2,'wp_user-settings-time','1631238973'),(61,1,'wp_elementor_connect_common_data','a:6:{s:9:\"client_id\";s:32:\"NNxo7xa9u0tTR0JGE5CJcLX9KTAh1XEa\";s:11:\"auth_secret\";s:32:\"cAhyAGJVxcNdoOqyGixdjPvYh0C6Ebq4\";s:12:\"access_token\";s:32:\"EpPha7kpfNP5eBsvqjNeg8UpQJQLOb4c\";s:19:\"access_token_secret\";s:32:\"qrK0kat20TGNwV2Y6HoCC6rEvGTwGxzo\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";}}'),(67,2,'nav_menu_recently_edited','23'),(68,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(69,2,'metaboxhidden_nav-menus','a:5:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:21:\"add-post-type-product\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-product_cat\";i:4;s:15:\"add-product_tag\";}'),(72,2,'closedpostboxes_product','a:0:{}'),(73,2,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),(74,2,'header-footer-elementor-rating','delayed-notice'),(77,2,'jetpack_tracks_wpcom_id','54654105'),(80,1,'jetpack_tracks_anon_id','jetpack:L8vA7ZAHG5feOmXO9TnuHJaT'),(81,1,'dismissed_update_notice','1'),(83,1,'manageedit-nf_subcolumnshidden','a:1:{i:0;i:3;}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'eessel','$P$BcKefc..tXpaxNOWdRRcvWnPTWNheJ0','eessel','ekow@esselwebdesign.com','https://michaelblakemenswear.calvarycrossag.com','2021-08-15 20:32:01','',0,'eessel'),(2,'michael.bennett','$P$BJwcAiNXclk9x2JYFhOhdAGZiZFmR1.','michael-bennett','michaelbennett7@me.com','','2021-08-22 21:24:36','1629815801:$P$BTQFueqj577Xvqhb0HPuRPWw7kalU.1',0,'Michael Bennett'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_admin_note_actions` -- DROP TABLE IF EXISTS `wp_wc_admin_note_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_admin_note_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `note_id` bigint(20) unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `is_primary` tinyint(1) NOT NULL DEFAULT '0', `actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `nonce_action` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `nonce_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `note_id` (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10666 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_admin_note_actions` -- LOCK TABLES `wp_wc_admin_note_actions` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */; INSERT INTO `wp_wc_admin_note_actions` VALUES (37,34,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,'',NULL,NULL),(38,35,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin','actioned',0,'',NULL,NULL),(75,36,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,'',NULL,NULL),(76,37,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,'',NULL,NULL),(78,39,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,'',NULL,NULL),(79,40,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(80,40,'affirm-insight-first-product-and-payment','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(81,41,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-products/?utm_source=inbox','actioned',0,'',NULL,NULL),(298,42,'tracking-opt-in','Activate usage tracking','','actioned',1,'',NULL,NULL),(299,43,'learn-more','Learn more','https://woocommerce.com/payments/','unactioned',0,'',NULL,NULL),(300,43,'get-started','Get started','https://michaelblakemenswear.calvarycrossag.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(301,44,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(302,44,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(557,47,'deactivate-paypal-checkout-plugin','Deactivate PayPal Checkout','https://michaelblakemenswear.calvarycrossag.com/wp-admin/plugins.php?action=deactivate&plugin=woocommerce-gateway-paypal-express-checkout%2Fwoocommerce-gateway-paypal-express-checkout.php&plugin_status=all&paged=1&_wpnonce=5c6f711a34','unactioned',1,'',NULL,NULL),(558,47,'learn-more','Learn More','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','unactioned',0,'',NULL,NULL),(1435,49,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned',0,'',NULL,NULL),(2221,51,'notify-refund-returns-page','Edit page','https://michaelblakemenswear.com/wp-admin/post.php?post=384&action=edit','actioned',0,'',NULL,NULL),(2223,53,'wc-payments-notes-set-up-refund-policy','Read more','https://docs.woocommerce.com/document/woocommerce-refunds#refund-policy-howto','unactioned',1,'',NULL,NULL),(2224,54,'wc-payments-notes-multi-currency-available','Set up now','admin.php?page=wc-settings&tab=wcpay_multi_currency','unactioned',1,'',NULL,NULL),(2229,55,'jetpack-backup-woocommerce','Get backups','https://jetpack.com/upgrade/backup-woocommerce/?utm_source=inbox&utm_medium=automattic_referred&utm_campaign=jp_backup_to_woo','actioned',0,'',NULL,NULL),(2231,57,'customize-store-with-blocks','Learn more','https://woocommerce.com/posts/how-to-customize-your-online-store-with-woocommerce-blocks/?utm_source=inbox','actioned',1,'',NULL,NULL),(2674,58,'learn-more','Learn more','https://woocommerce.com/posts/pre-launch-checklist-the-essentials/?utm_source=inbox','actioned',0,'',NULL,NULL),(2992,50,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned',1,'',NULL,NULL),(5813,1,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(5814,2,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,'',NULL,NULL),(5815,3,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,'',NULL,NULL),(5816,4,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=§ion=changelog','actioned',1,'',NULL,NULL),(5817,5,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,'',NULL,NULL),(5833,20,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned',1,'',NULL,NULL),(5849,59,'learn-more','Learn more','https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch','unactioned',1,'',NULL,NULL),(5929,69,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(5982,11,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,'',NULL,NULL),(5983,12,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,'',NULL,NULL),(5984,13,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','actioned',1,'',NULL,NULL),(5985,13,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,'',NULL,NULL),(5986,14,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,'',NULL,NULL),(5987,15,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,'',NULL,NULL),(6269,61,'browse_extensions','Browse extensions','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(6270,62,'browse_extensions','Browse extensions','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(7254,71,'update-store-details','Update store details','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&path=/setup-wizard','actioned',0,'',NULL,NULL),(9428,48,'update-db_run','Update WooCommerce Database','https://michaelblakemenswear.com/wp-admin/admin.php?page=stats&noheader&chart=flot-stats-data&do_update_woocommerce=true','unactioned',1,'wc_db_update','wc_db_update','wc_db_update_nonce'),(9429,48,'update-db_learn-more','Learn more about updates','https://docs.woocommerce.com/document/how-to-update-woocommerce/','unactioned',0,'',NULL,NULL),(9594,26,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(9595,27,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(9647,77,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox&utm_medium=product','actioned',0,'',NULL,NULL),(10145,73,'wc_simple_payments_m2_reader_launch_q1_2022','Learn more','https://woocommerce.com/in-person-payments/','actioned',0,'',NULL,NULL),(10220,63,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(10221,64,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(10222,65,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(10254,78,'lead_gen_existing_customers_1','Yes, please','https://woocommerce.com/take-your-business-to-the-next-level/','actioned',0,'',NULL,NULL),(10631,70,'browse_extensions','Browse extensions','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(10632,66,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(10633,67,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/','actioned',1,'',NULL,NULL),(10634,68,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/','actioned',1,'',NULL,NULL),(10635,6,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),(10636,7,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'',NULL,NULL),(10637,8,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),(10638,9,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),(10639,10,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'',NULL,NULL),(10640,16,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'',NULL,NULL),(10641,17,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'',NULL,NULL),(10642,18,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'',NULL,NULL),(10643,19,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'',NULL,NULL),(10644,21,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'',NULL,NULL),(10645,22,'update-wc-subscriptions-3-0-15','View latest version','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&page=wc-addons§ion=helper','actioned',1,'',NULL,NULL),(10646,23,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'',NULL,NULL),(10647,28,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(10648,29,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(10649,30,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(10650,30,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(10651,31,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(10652,31,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(10653,32,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(10654,32,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(10655,33,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(10656,33,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(10657,60,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',1,'',NULL,NULL),(10658,72,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,'',NULL,NULL),(10659,74,'wcpay_applepay_q1_2022','Let your customers know about Apple Pay','https://developer.apple.com/apple-pay/marketing/','actioned',0,'',NULL,NULL),(10660,75,'stripe_applepay_q1_2022','Add Apple Pay','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout§ion=stripe','actioned',0,'',NULL,NULL),(10661,76,'square_applepay_q1_2022','Add Apple Pay','http://michaelblakemenswear.com/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square','actioned',0,'',NULL,NULL),(10662,79,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,'',NULL,NULL),(10663,79,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned',0,'',NULL,NULL),(10664,80,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,'',NULL,NULL),(10665,80,'dismiss','Dismiss','','actioned',0,'',NULL,NULL); /*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_admin_notes` -- DROP TABLE IF EXISTS `wp_wc_admin_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_admin_notes` ( `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `content_data` longtext COLLATE utf8mb4_unicode_520_ci, `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_reminder` datetime DEFAULT NULL, `is_snoozable` tinyint(1) NOT NULL DEFAULT '0', `layout` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `image` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `is_deleted` tinyint(1) NOT NULL DEFAULT '0', `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info', `is_read` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_admin_notes` -- LOCK TABLES `wp_wc_admin_notes` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */; INSERT INTO `wp_wc_admin_notes` VALUES (1,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(2,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(3,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(4,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(5,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(6,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(7,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(8,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(9,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(10,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','unactioned','woocommerce.com','2021-09-06 20:42:22',NULL,0,'plain','',0,'info',1),(11,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(12,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(13,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','unactioned','woocommerce.com','2021-09-06 20:42:22',NULL,0,'plain','',0,'info',1),(14,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(15,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(16,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','unactioned','woocommerce.com','2021-09-06 20:42:22',NULL,0,'plain','',0,'info',1),(17,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.','{}','unactioned','woocommerce.com','2021-09-06 20:42:22',NULL,0,'plain','',0,'info',1),(18,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(19,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','unactioned','woocommerce.com','2021-08-23 14:55:57',NULL,0,'plain','',0,'info',1),(20,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(21,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(22,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(23,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(24,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(25,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(26,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br /><br />\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n ','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(27,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br /><br />\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n ','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(28,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(29,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','unactioned','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(30,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(31,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(32,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(33,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-15 20:40:50',NULL,0,'plain','',0,'info',1),(34,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-08-15 20:40:51',NULL,0,'plain','',0,'info',1),(35,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-08-15 20:42:13',NULL,0,'plain','',0,'info',1),(36,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2021-08-21 22:50:42',NULL,0,'plain','',0,'info',1),(37,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-08-21 22:50:42',NULL,0,'plain','',0,'info',1),(39,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-08-21 22:50:42',NULL,0,'plain','',0,'info',1),(40,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week.<br><br>Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-08-21 22:50:42',NULL,0,'plain','',0,'info',1),(41,'wc-admin-adding-and-managing-products','info','en_US','Adding and Managing Products','Learn more about how to set up products in WooCommerce through our useful documentation about adding and managing products.','{}','unactioned','woocommerce-admin','2021-08-21 22:50:42',NULL,0,'plain','',0,'info',1),(42,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://michaelblakemenswear.calvarycrossag.com/wp-admin/admin.php?page=wc-settings&tab=advanced&section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2021-08-22 20:41:14',NULL,0,'plain','',0,'info',1),(43,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooCommerce Payments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','actioned','woocommerce-admin','2021-08-22 20:41:14',NULL,0,'plain','',0,'info',1),(44,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-08-22 20:41:14',NULL,0,'plain','',0,'info',1),(47,'ppcp-disable-ppxo-note','info','en_US','Action Required: Deactivate PayPal Checkout','As of 1 Sept 2021, PayPal Checkout will be officially retired from WooCommerce.com, and support for this product will end as of 1 March 2022. To fully switch over, all you need to do is deactivate and/or remove the PayPal Checkout plugin from your store.','{}','unactioned','woocommerce-paypal-payments','2021-08-23 15:03:27',NULL,0,'plain','',0,'info',1),(48,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','{}','unactioned','woocommerce-core','2021-08-23 20:48:49',NULL,0,'plain','',0,'info',1),(49,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-08-26 20:53:20',NULL,0,'plain','',0,'info',1),(50,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2021-08-31 20:45:29',NULL,0,'plain','',0,'info',1),(51,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2021-09-06 16:24:44',NULL,0,'plain','',0,'info',1),(53,'wc-payments-notes-set-up-refund-policy','info','en_US','Set up refund policy','Protect your merchant account from fraudulent disputes by defining the policy and making it accessible to customers.','{}','unactioned','woocommerce-payments','2021-09-06 16:26:50',NULL,0,'plain','',0,'info',1),(54,'wc-payments-notes-multi-currency-available','info','en_US','Sell worldwide in multiple currencies','Boost your international sales by allowing your customers to shop and pay in their local currency.','{}','unactioned','woocommerce-payments','2021-09-06 16:26:50',NULL,0,'plain','',0,'info',1),(55,'wc-admin-marketing-jetpack-backup','marketing','en_US','Protect your WooCommerce Store with Jetpack Backup.','Store downtime means lost sales. One-click restores get you back online quickly if something goes wrong.','{}','unactioned','woocommerce-admin-notes','2021-09-06 20:42:22',NULL,0,'plain','',0,'info',1),(57,'wc-admin-customize-store-with-blocks','info','en_US','Customize your online store with WooCommerce blocks','With our blocks, you can select and display products, categories, filters, and more virtually anywhere on your site — no need to use shortcodes or edit lines of code. Learn more about how to use each one of them.','{}','unactioned','woocommerce-admin','2021-09-06 20:42:22',NULL,0,'plain','',0,'info',1),(58,'wc-admin-launch-checklist','info','en_US','Ready to launch your store?','To make sure you never get that sinking \"what did I forget\" feeling, we\'ve put together the essential pre-launch checklist.','{}','unactioned','woocommerce-admin','2021-09-12 20:51:38',NULL,0,'plain','',0,'info',1),(59,'bbpos-chipper-launch','marketing','en_US','Ready to grow your business beyond online?','Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard – no matter where you are.','{}','unactioned','woocommerce.com','2021-10-18 20:56:48',NULL,0,'plain','',0,'info',0),(60,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2021-11-04 21:25:23',NULL,0,'plain','',0,'info',0),(61,'new_in_app_marketplace_2021_1','info','en_US','Grow your business with extensions','Check out our NEW Extensions tab to see our favorite extensions for growing your business, and discover the most popular extensions in the WooCommerce Marketplace.','{}','pending','woocommerce.com','2021-11-08 20:42:32',NULL,0,'plain','',0,'info',0),(62,'new_in_app_marketplace_2021_2','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2021-11-08 20:42:32',NULL,0,'plain','',0,'info',0),(63,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-11 20:54:54',NULL,0,'plain','',0,'info',0),(64,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-11 20:54:54',NULL,0,'plain','',0,'info',0),(65,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','unactioned','woocommerce.com','2021-11-11 20:54:54',NULL,0,'plain','',0,'info',0),(66,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2021-11-11 20:54:54',NULL,0,'plain','',0,'info',0),(67,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-11 20:54:54',NULL,0,'plain','',0,'info',0),(68,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','unactioned','woocommerce.com','2021-11-12 20:54:49',NULL,0,'plain','',0,'info',0),(69,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2021-11-13 21:26:09',NULL,0,'plain','',0,'info',0),(70,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','unactioned','woocommerce.com','2021-11-23 22:35:13',NULL,0,'plain','',0,'info',0),(71,'wc-admin-update-store-details','info','en_US','Edit your store details if you need to','Nice work completing your store profile! You can always go back and edit the details you just shared, as needed.','{}','unactioned','woocommerce-admin','2021-12-16 20:45:19',NULL,0,'plain','',0,'info',0),(72,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-01-05 21:23:41',NULL,0,'plain','',0,'info',0),(73,'wc_simple_payments_m2_reader_launch_q1_2022','marketing','en_US','Take quick and easy in-person payments','WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are – or offer a local pickup option with payment taken in-person for orders placed online.','{}','unactioned','woocommerce.com','2022-02-04 20:46:06',NULL,0,'plain','',0,'info',0),(74,'wcpay_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Diane does','See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.','{}','unactioned','woocommerce.com','2022-02-07 21:16:37',NULL,0,'plain','',0,'info',0),(75,'stripe_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Thomas does','Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings > Payments > Stripe.','{}','pending','woocommerce.com','2022-02-07 21:16:37',NULL,0,'plain','',0,'info',0),(76,'square_applepay_q1_2022','marketing','en_US','Increase conversions with a faster checkout experience','By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings > Payments > Square.','{}','pending','woocommerce.com','2022-02-07 21:16:37',NULL,0,'plain','',0,'info',0),(77,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','{}','unactioned','woocommerce-admin','2022-02-11 22:26:09',NULL,0,'plain','',0,'info',0),(78,'lead_gen_existing_customers_1','marketing','en_US','Talk to a consultant','As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.','{}','unactioned','woocommerce.com','2022-02-11 22:26:10',NULL,0,'plain','',0,'info',0),(79,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','pending','woocommerce.com','2022-03-10 20:49:21',NULL,0,'plain','',0,'info',0),(80,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','unactioned','woocommerce.com','2022-03-10 20:49:21',NULL,0,'plain','',0,'info',0); /*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_category_lookup` -- DROP TABLE IF EXISTS `wp_wc_category_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_category_lookup` ( `category_tree_id` bigint(20) unsigned NOT NULL, `category_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`category_tree_id`,`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_category_lookup` -- LOCK TABLES `wp_wc_category_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_category_lookup` VALUES (15,15),(17,17),(18,18),(19,19),(21,21),(21,25),(21,26),(21,28),(21,29),(21,30),(21,31),(22,22),(24,24),(25,25),(26,26),(28,28),(29,29),(30,30),(31,31); /*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_customer_lookup` -- DROP TABLE IF EXISTS `wp_wc_customer_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_customer_lookup` ( `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned DEFAULT NULL, `username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `date_last_active` timestamp NULL DEFAULT NULL, `date_registered` timestamp NULL DEFAULT NULL, `country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`customer_id`), UNIQUE KEY `user_id` (`user_id`), KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_customer_lookup` -- LOCK TABLES `wp_wc_customer_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_download_log` -- DROP TABLE IF EXISTS `wp_wc_download_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_download_log` ( `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `permission_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '', PRIMARY KEY (`download_log_id`), KEY `permission_id` (`permission_id`), KEY `timestamp` (`timestamp`), CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_download_log` -- LOCK TABLES `wp_wc_download_log` WRITE; /*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_coupon_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_coupon_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `coupon_id` bigint(20) NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `discount_amount` double NOT NULL DEFAULT '0', PRIMARY KEY (`order_id`,`coupon_id`), KEY `coupon_id` (`coupon_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_coupon_lookup` -- LOCK TABLES `wp_wc_order_coupon_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_product_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_product_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_product_lookup` ( `order_item_id` bigint(20) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL, `product_id` bigint(20) unsigned NOT NULL, `variation_id` bigint(20) unsigned NOT NULL, `customer_id` bigint(20) unsigned DEFAULT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `product_qty` int(11) NOT NULL, `product_net_revenue` double NOT NULL DEFAULT '0', `product_gross_revenue` double NOT NULL DEFAULT '0', `coupon_amount` double NOT NULL DEFAULT '0', `tax_amount` double NOT NULL DEFAULT '0', `shipping_amount` double NOT NULL DEFAULT '0', `shipping_tax_amount` double NOT NULL DEFAULT '0', PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`), KEY `product_id` (`product_id`), KEY `customer_id` (`customer_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_product_lookup` -- LOCK TABLES `wp_wc_order_product_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_stats` -- DROP TABLE IF EXISTS `wp_wc_order_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_stats` ( `order_id` bigint(20) unsigned NOT NULL, `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0', `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `num_items_sold` int(11) NOT NULL DEFAULT '0', `total_sales` double NOT NULL DEFAULT '0', `tax_total` double NOT NULL DEFAULT '0', `shipping_total` double NOT NULL DEFAULT '0', `net_total` double NOT NULL DEFAULT '0', `returning_customer` tinyint(1) DEFAULT NULL, `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `customer_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`order_id`), KEY `date_created` (`date_created`), KEY `customer_id` (`customer_id`), KEY `status` (`status`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_stats` -- LOCK TABLES `wp_wc_order_stats` WRITE; /*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_tax_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_tax_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `shipping_tax` double NOT NULL DEFAULT '0', `order_tax` double NOT NULL DEFAULT '0', `total_tax` double NOT NULL DEFAULT '0', PRIMARY KEY (`order_id`,`tax_rate_id`), KEY `tax_rate_id` (`tax_rate_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_tax_lookup` -- LOCK TABLES `wp_wc_order_tax_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_attributes_lookup` -- DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_attributes_lookup` ( `product_id` bigint(20) NOT NULL, `product_or_parent_id` bigint(20) NOT NULL, `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `term_id` bigint(20) NOT NULL, `is_variation_attribute` tinyint(1) NOT NULL, `in_stock` tinyint(1) NOT NULL, KEY `product_or_parent_id_term_id` (`product_or_parent_id`,`term_id`), KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_attributes_lookup` -- LOCK TABLES `wp_wc_product_attributes_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_meta_lookup` -- DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_meta_lookup` ( `product_id` bigint(20) NOT NULL, `sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '', `virtual` tinyint(1) DEFAULT '0', `downloadable` tinyint(1) DEFAULT '0', `min_price` decimal(19,4) DEFAULT NULL, `max_price` decimal(19,4) DEFAULT NULL, `onsale` tinyint(1) DEFAULT '0', `stock_quantity` double DEFAULT NULL, `stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock', `rating_count` bigint(20) DEFAULT '0', `average_rating` decimal(3,2) DEFAULT '0.00', `total_sales` bigint(20) DEFAULT '0', `tax_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable', `tax_class` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '', PRIMARY KEY (`product_id`), KEY `virtual` (`virtual`), KEY `downloadable` (`downloadable`), KEY `stock_status` (`stock_status`), KEY `stock_quantity` (`stock_quantity`), KEY `onsale` (`onsale`), KEY `min_max_price` (`min_price`,`max_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_meta_lookup` -- LOCK TABLES `wp_wc_product_meta_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_product_meta_lookup` VALUES (51,'',0,0,10.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(52,'',0,0,10.0000,10.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(53,'',0,0,15.0000,15.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(54,'',0,0,20.0000,20.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(55,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(56,'',0,0,55.0000,55.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(183,'',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(210,'',0,0,250.0000,250.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(262,'',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(269,'',0,0,250.0000,250.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(275,'',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(280,'',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(289,'',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(295,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(296,'',0,0,17.5000,17.5000,0,NULL,'instock',0,0.00,0,'taxable',''),(298,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(299,'',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(306,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(341,'',0,0,250.0000,250.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(370,'',0,0,245.0000,245.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(379,'',0,0,1499.0000,1499.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(388,'',0,0,175.0000,175.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(401,'',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(408,'',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(410,'',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(411,'',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(412,'',0,0,40.0000,40.0000,0,NULL,'instock',0,0.00,0,'taxable',''); /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_rate_limits` -- DROP TABLE IF EXISTS `wp_wc_rate_limits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_rate_limits` ( `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `rate_limit_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `rate_limit_expiry` bigint(20) unsigned NOT NULL, PRIMARY KEY (`rate_limit_id`), UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_rate_limits` -- LOCK TABLES `wp_wc_rate_limits` WRITE; /*!40000 ALTER TABLE `wp_wc_rate_limits` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_rate_limits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_reserved_stock` -- DROP TABLE IF EXISTS `wp_wc_reserved_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_reserved_stock` ( `order_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `stock_quantity` double NOT NULL DEFAULT '0', `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`order_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_reserved_stock` -- LOCK TABLES `wp_wc_reserved_stock` WRITE; /*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_tax_rate_classes` -- DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_tax_rate_classes` ( `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`tax_rate_class_id`), UNIQUE KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_tax_rate_classes` -- LOCK TABLES `wp_wc_tax_rate_classes` WRITE; /*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */; INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate'); /*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_webhooks` -- DROP TABLE IF EXISTS `wp_wc_webhooks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_webhooks` ( `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `api_version` smallint(4) NOT NULL, `failure_count` smallint(10) NOT NULL DEFAULT '0', `pending_delivery` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`webhook_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_webhooks` -- LOCK TABLES `wp_wc_webhooks` WRITE; /*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_api_keys` -- DROP TABLE IF EXISTS `wp_woocommerce_api_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_api_keys` ( `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL, `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL, `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL, `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL, `nonces` longtext COLLATE utf8mb4_unicode_520_ci, `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL, `last_access` datetime DEFAULT NULL, PRIMARY KEY (`key_id`), KEY `consumer_key` (`consumer_key`), KEY `consumer_secret` (`consumer_secret`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_api_keys` -- LOCK TABLES `wp_woocommerce_api_keys` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_attribute_taxonomies` -- DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_attribute_taxonomies` ( `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL, `attribute_public` int(1) NOT NULL DEFAULT '1', PRIMARY KEY (`attribute_id`), KEY `attribute_name` (`attribute_name`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_attribute_taxonomies` -- LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_downloadable_product_permissions` -- DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_downloadable_product_permissions` ( `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL, `product_id` bigint(20) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL DEFAULT '0', `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access_expires` datetime DEFAULT NULL, `download_count` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`permission_id`), KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), KEY `download_order_product` (`download_id`,`order_id`,`product_id`), KEY `order_id` (`order_id`), KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_downloadable_product_permissions` -- LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_log` -- DROP TABLE IF EXISTS `wp_woocommerce_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_log` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `level` smallint(4) NOT NULL, `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `context` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`log_id`), KEY `level` (`level`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_log` -- LOCK TABLES `wp_woocommerce_log` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_order_itemmeta` -- DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_order_itemmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `order_item_id` (`order_item_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_order_itemmeta` -- LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_order_items` -- DROP TABLE IF EXISTS `wp_woocommerce_order_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_order_items` ( `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `order_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_order_items` -- LOCK TABLES `wp_woocommerce_order_items` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_payment_tokenmeta` -- DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_payment_tokenmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `payment_token_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `payment_token_id` (`payment_token_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_payment_tokenmeta` -- LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_payment_tokens` -- DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_payment_tokens` ( `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `is_default` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`token_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_payment_tokens` -- LOCK TABLES `wp_woocommerce_payment_tokens` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_sessions` -- DROP TABLE IF EXISTS `wp_woocommerce_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_sessions` ( `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL, `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `session_expiry` bigint(20) unsigned NOT NULL, PRIMARY KEY (`session_id`), UNIQUE KEY `session_key` (`session_key`) ) ENGINE=InnoDB AUTO_INCREMENT=2267 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_sessions` -- LOCK TABLES `wp_woocommerce_sessions` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zone_locations` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zone_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_id` bigint(20) unsigned NOT NULL, `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`location_id`), KEY `location_id` (`location_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zone_locations` -- LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zone_methods` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zone_methods` ( `zone_id` bigint(20) unsigned NOT NULL, `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `method_order` bigint(20) unsigned NOT NULL, `is_enabled` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`instance_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zone_methods` -- LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zones` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zones` ( `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `zone_order` bigint(20) unsigned NOT NULL, PRIMARY KEY (`zone_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zones` -- LOCK TABLES `wp_woocommerce_shipping_zones` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_tax_rate_locations` -- DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_tax_rate_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`location_id`), KEY `tax_rate_id` (`tax_rate_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_tax_rate_locations` -- LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_tax_rates` -- DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_tax_rates` ( `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `tax_rate_priority` bigint(20) unsigned NOT NULL, `tax_rate_compound` int(1) NOT NULL DEFAULT '0', `tax_rate_shipping` int(1) NOT NULL DEFAULT '1', `tax_rate_order` bigint(20) unsigned NOT NULL, `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`tax_rate_id`), KEY `tax_rate_country` (`tax_rate_country`), KEY `tax_rate_state` (`tax_rate_state`(2)), KEY `tax_rate_class` (`tax_rate_class`(10)), KEY `tax_rate_priority` (`tax_rate_priority`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_tax_rates` -- LOCK TABLES `wp_woocommerce_tax_rates` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2022-03-10 17:13:22